mysql connecting
#2

PHP код:
//On top
new MySQLDatabase;
//OnGameModeInit
new MySQLOptoption_id mysql_init_options();
    
mysql_set_option(option_idAUTO_RECONNECTtrue); // We will set that option to automatically reconnect on timeouts.
    
Database mysql_connect(MYSQL_HOSTMYSQL_USERMYSQL_PASSMYSQL_DATABASEoption_id);
    if(
Database == MYSQL_INVALID_HANDLE || mysql_errno(Database) != 0// Checking if the database connection is invalid to shutdown.
    
{
        print(
"MySQL Database: Connection to database failed!");
        
SendRconCommand("exit");
        return 
1;
    }
    print(
"MySQL Database: Successfully connected."); 
Reply


Messages In This Thread
mysql connecting - by EzeGODezE - 30.04.2018, 21:29
Re: mysql connecting - by kovac - 30.04.2018, 21:42
Re: mysql connecting - by EzeGODezE - 06.05.2018, 08:50
Re: mysql connecting - by kovac - 06.05.2018, 09:00

Forum Jump:


Users browsing this thread: 1 Guest(s)