EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::Windows Servers (https://www.eqemulator.org/forums/forumdisplay.php?f=587)
-   -   Not recognizing my database! (https://www.eqemulator.org/forums/showthread.php?t=23969)

LordAdakos 12-12-2007 10:01 AM

Not recognizing my database!
 
I followed the set up guide to a T. from: (http://www.eqemulator.net/wiki/wikka...ka=ws992mysql5)
But when i go to install Minilogin so that I can connect over a lan (using the guide from http://www.eqemulator.net/wiki/wikka...MiniLoginSetup) I try to put the first step in MYSQL prompt, [INSERT INTO VARIABLES (varname, value, information) VALUES ('LoginType', 'Minilogin', 'Set this to Minilogin to login using a minilogin server :)');] and it tells me: ERROR 1046: No database found.

Can anyone help me out here?

Derision 12-12-2007 10:57 AM

Quote:

Originally Posted by LordAdakos (Post 140913)
it tells me: ERROR 1046: No database found.

Error 1046 is No Database Selected.

Before you do the INSERT, you need to tell it which database to use. For example, if you called your database peq, you would type:

use peq;

and then execute the INSERT command.

I use Linux, and my current DB is called Ykesha, so this is what it looks like, but it is similar under Windows:

Code:

xxxxx@yyyyy ~ $ mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 39 to server version: 5.0.26-log

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> use ykesha ;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql>

After it says 'Database changed'. type in the INSERT INTO VARIABLES command for minilogin.

LordAdakos 12-12-2007 01:17 PM

thanks so much! i was wondering... im trying it now...
woohoo it works :)

appreciate it much!


All times are GMT -4. The time now is 10:26 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.