View Single Post
  #4  
Old 04-23-2003, 09:30 AM
ednecro
Sarnak
 
Join Date: Jul 2002
Posts: 85
Default

It sounds like mysql is pooched. You might try backing up your DB,
dump it and re-up with a fresh DB.
cd C:\Mysql\bin
mysqldump eq > OldDatabaseBackup.sql
(or substitute whatever you called your db)
Copy "yourdb.sql" to your C:\Mysql\bin directory.

Go to C:\Mysql\bin and open mysql.exe. Type:

drop database eq;
create database eq;
use eq;
source yourdb.sql

I should say somthing symbolic...
Run silent, run deep!!!
__________________
/say did you hear somthing?
a Hill Giant slashes YOU for 45 pts of damage.
a Hill Giant slashes YOU for 78 pts of damage.
You have been slain by a Hill Giant.
LOADING PLEASE WAIT...
Reply With Quote