Log in

View Full Version : help


daoreofosho
05-09-2010, 08:44 PM
i am on last step of making server i cant get it to do the cmd part where it says source load_player.sql any help ?

blackdragonsdg
05-10-2010, 03:17 PM
You can't just type source load_player.sql the program doesn't know where load_player.sql is at. You must add the file path for load_player.sql. An example would be source C:/SVN/load_player.sql

joligario
05-10-2010, 07:36 PM
Or start your mysql from the location where your .sql is at the command prompt.

Sparticas
05-15-2010, 07:32 PM
for instance your files are c:\peq\peqdatabase\load_player.sql you would go to start in the search box type cmd to get to command prompt then type:

cd c:\peq\peqdatabase then hit enter

now you should see c:\peq\peqdatabase> now type:
mysql -u root -p hit enter

it then ask for your password type: what ever your password is hit enter

you should now see mysql> type: use peq then hit enter

now type: source load_player.sql; hit enter

and do the same for each thing your trying to source into your database

joligario
05-15-2010, 07:34 PM
You forgot to use a database

Sparticas
05-15-2010, 07:40 PM
made adjustments above, ty got ahead of my self