First you export the database from mySQL:
(terminal, not in mySQL)
mysqldump –u user_name –h localhost –p db_name > file_name.sql
Then you send it to the PC you want to and then you import it in that PC's mySQL database with the same command but using "<" instead
|