| he saves it as (.frm,.MYD,.MYI)anybody knows how in windows can i use the
| database from my LINUX?

simple, see mysql manual: mysqldump

in linux shell type:
mysqldump -uUSER -pPASSWORD --add-drop-table MYDATABASE >
dumpOfMyDatabase.sql

copy the file dumpOfMyDatabase.sql to your win computer,
then type in windows command prompt:
mysql -uUser -pPassword
create database MYDATABSE;
\q

mysql -uUser -pPassword MYDATABSE <dumpOfMyDatabase.sql


cheers,

ati


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to