pawn Code:
//=============================================================================================================================================================
// login e registro 2
new query[512], rows, fields;
new Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, MAX_PLAYER_NAME);
mysql_format(ConnectMYSQL, query, sizeof(query), "SELECT * FROM `accounts` WHERE `Name` = '%s'", Name); //SELECT * FROM accounts WHERE Name = %s TROQUE PELA QUAL ESTA NO SEU BANCO DE DADOS
mysql_function_query(ConnectMYSQL, query, true, "OnConnection","i",playerid);
// Agora em OnConnection use cache_get_field_content para pegar os dados e por em variaveis
// ou como quiser