View Single Post
  #2  
Old 03-17-2003, 04:07 AM
Trumpcard
Demi-God
 
Join Date: Jan 2002
Location: Charlotte, NC
Posts: 2,614
Default

I always do this before updating my database

mysqldump is a binary program like mysql..
The general format of it is mysqldump <database name> <tablename>

so, this should do it for you..
mysqldump eq character_ > character.sql
mysqldump eq account > account.sql

Then , after the new database is is place (new db.sql, or updated one)

mysql eq < character.sql
mysql eq < account.sql

(assuming your database name is eq)
__________________
Quitters never win, and winners never quit, but those who never win and never quit are idiots.
Reply With Quote