13.08.2013, 11:49
mysql_tquery(connectionHandle, query[], callback[], format[], {Float,_}:...);
is like mysql_function_query and mysql_tquery hasn't the parameter bool: .
Ex:
And mysql_ping was removed . You can go at OnQueryError and add this:
is like mysql_function_query and mysql_tquery hasn't the parameter bool: .
Ex:
pawn Код:
new Query[ 256 ];
format( Query, sizeof Query, "SELECT `Name` FROM `Users` WHERE `Id` = %d", GetPlayerId( playerid ) );
mysql_tquery( 1, Query, "", "" );
pawn Код:
switch( errorid )
{
case 2006: print( "Couldn't connect to database" );
}