18.02.2012, 14:13
Hello. I have problem with mysql connect,when i start server mysql don't load here:
Here is my codes:
OnGameModeInit
Mysql is on,and i use XAMPP program for on. I try go to 127.0.0.1/phymyadmin and all works fine.
Then where is bad?
Код:
[17:05:27] >> mysql_connect( ) [17:05:27] CMySQLHandler::CMySQLHandler() - constructor called. [17:05:27] CMySQLHandler::CMySQLHandler() - Connecting to "127.0.0.1" | DB: "database" | Username: "root" ... [17:05:28] CMySQLHandler::Connect() - Can't connect to MySQL server on '127.0.0.1' (10061) (Error ID: 2003)
Код:
#define MySQL_HOST "127.0.0.1" #define MySQL_USER "root" #define MySQL_DATA "database" #define MySQL_PASS ""
Код:
mysql_debug( true ); mysql_connect( MySQL_HOST,MySQL_USER,MySQL_DATA,MySQL_PASS ); if( mysql_ping( ) >= 1 ) { print( "Prisijungeme prie MySQL sekmingai!" ); } else { SendRconCommand( "exit" ); }
Then where is bad?