the mysql client (mysql.exe) isn't installed with PHPDev4??? if it is, you can use the command line. if mysql is in your path, just run
Code:
mysql -uuser -ppass database < path\to\file.dump
if it's not in your path, just replace `mysql' with the full path. or you can just run mysql.exe by double-clicking it (assuming the default user/pass will work) and run
Code:
mysql> source path\to\file.dump
make sure your database is selected first (`USE database').
does that help? i thought you already knew how to import with mysql.
if PHPDev4 doesn't come with mysql, it really sucks.
Bookmarks