in reply to Urgent help !!!!
That syntax is specific to MySQL and won't work with DBD::CSV. You can accomplish the same thing like this:
$dbh->{csv_files}->{outfile} = { file => "g:/dbf2csv/$filename", sep_char => ',', eol => '\r\n' }; $dbh->do(" CREATE TABLE outfile AS SELECT * FROM sourceTable ");
|
|---|