
March 2nd, 2000, 12:00 PM
|
|
Gödelian monster
|
|
Join Date: Jul 1999
Location: Central Florida, USA
|
|
|
No need to *convert* it. Just use mysqldump to export all SQL commands used to build the database (you can also include all record inserts).
mysqldump -u [user] -p [database] > filename.sql
pipes the output to a text file, which you can then use to create the identical database on your Linux machine.
|