Musisz użyć FBExport narzędzie do generowania zrzutu z wkładkami
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
Uważaj na daty w mysql. Eksportuj w odpowiednim formacie. Aby wyeksportować bazę danych w niestandardowym formacie daty, użyj:
$> 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
Aby zaimportować datę do mySQL, użyj polecenia 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