On Fri, �3 Oct 2003 13:44:53 +0300, [EMAIL PROTECTED] wrote: Hi
>�I want to create a migration tool, so i want to connect to my >�database (mysql) and choose the database i want to move. >�Afterwards, i would like to store ( the file/files i guess ) into >�my disk and be able to copy this database into another sql server. My advice would be to do as little work as possible :-). Hence you should consider exporting your data using a tool which comes with MySQL: mysqldump. Don't export with the 'generate the SQL for create tables' option, since that will introduce MySQL-specific SQL. On the import side, look for a similar tool. -- Cheers Ron Savage, [EMAIL PROTECTED] on 4/10/2003 http://savage.net.au/index.html
