Anda harus menggunakan FBExport alat untuk menghasilkan dump dengan sisipan
FBExport.exe -D "c:\DB\WL.FDB" -U user –P password -Si -V TEST -F test.out
Where:
Si – means “export to SQL inserts” format
V – table name to export
F – output filename
Hati-hati dengan tanggal di mysql. Ekspor dalam format yang benar. Untuk mengekspor db dalam format tanggal khusus, gunakan:
$> FBExport.exe -D "c:\DB\WL.FDB" -U user –P password -Si -V TEST -F test.out -J "Y-M-D" -K "H:M:S"
Where:
J - date format
K – time format
Untuk mengimpor tanggal ke mySQL gunakan perintah SOURCE:
$> mysql --user=root --password=password
$> use database_name
$> SOURCE c:\export\table_name.out
Ref:http://kosiara87 .blogspot.nl/2011/03/export-data-from-firebird-into-pure-sql.html