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

You want to dump the tables, you can use the mysqldump command


mysqldump <databasename> <tablename> > somefile

lets say you want to dump the lootdrop_entries table, you'd do
something like

mysqldump eq lootdrop_entries > lootdropentries.sql

then they could source those into their database.

To dump the ENTIRE database, just do

mysqldump <databasename> > filename
__________________
Quitters never win, and winners never quit, but those who never win and never quit are idiots.
Reply With Quote