-v Produce some status output.
-vv More verbose.
-vvv Even more verbose: produce a progress report.
-f Translate all field names in the xBase file to lowercase.
-u Translate all text in the xBase file to uppercase.
-l Translate all text in the xBase file to lowercase.
-L Use LOCAL INFILE for table loading in MySQL.
-n Allow NULL fields: 'NOT NULL' will be not added in table creation statement.
-ofield[,field[,...]]
List fields to insert into MySQL database. Primary use is to ease import of complex dbf files
where we want only few fields. NOTE: -o is processed before substitution (-s), so you have to use
dbf field names here.
-econversion-file
Specify file for CHAR fields conversion. File format is: 1st line: number of characters to
convert (number of lines). Further lines: <char_to_convert> <char_after_conversion>.
-sold-name=new-name[,old-name=new-name[,...]]
Takes a list of field name/new field name pairs. Primary use is to avoid conflicts between field
names and MySQL reserved keywords. When the new field name is empty, the field is skipped in both
the CREATE clause and the INSERT clauses, i.e. it will not be present in the MySQL table. For
example:
-s ORDER=HORDER,REMARKS=,STAT1=STATUS1
-ifield[,field[,...]]
List fields to be indexed. MySQL field names should be used here.
-ddatabase
Select the database to insert into. Default is 'test'.
-ttable
Select the table to insert into. Default is 'test'.
-c[c] Create table if one doesn't exist already. If the table already exists, drop it and build a new
one. The default is to insert all data into the named table. If -cc is specified, no records
will be inserted.
-pprimary
Select the primary key. You have to give the exact field name.
-hhost
Select the host to insert into. Untested.
-F Fixed length records. (By default CHAR is saved as VARCHAR.)
-qdbf2mysql: "Quick" mode. Inserts data via temporary file using 'LOAD DATA INFILE' MySQL
statement. This increased insertion speed on my PC 2-2.5 times. Also note that during whole
'LOAD DATA' affected table is locked.
mysql2dbf: Specify custom query to use.
-r Trim trailing and leading whitespace from CHAR type fields data.
-x Start each table with _rec and _timestamp fields.
-Ccharset
Specify the charset to use in table.
-Ppassword
Specify password on the MySQL server.
-Uuser
Specify user on the MySQL server.