i made a mysql database from my computer at home... now i need to bring it to work..
anybody know how i can save it onto a cd and bring it to work?
and how do i put it in my mysql database at work?
Use mysqldump to export it to sql. Then use command line mysql, shown below, to import it.
/path/to/mysql -u[b]username[/b] -p[b]password database[/b] < /path/to/file.sql
does that matter?
Nope. Should work either way. Just change the directory structure to point to mysql.exe and mysqldump.exe.
you helped me out a lot. 🙂