1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20:
<?php
namespace Kanryu\QuickCsv\MySQL;
use \Kanryu\QuickCsv\QuickCsvImporter as QuickCsvImporterBase;
/** Module to import CSV very fast
*
* - Import your CSV data directly into a new/existing temporary table with an RDB-specific API.
* - Validation of input values and correlation record check are confirmed by executing SQL.
* - To move data from the temporary table to the final table, execute a normal INSERT / UPDATE queries.
*/
class QuickCsvImporter Extends QuickCsvImporterBase
{
}