SA-MP Forums Archive
[Ajuda] SQLite Dъvida - Dado em Variбvel - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] SQLite Dъvida - Dado em Variбvel (/showthread.php?tid=655281)



SQLite Dъvida - Dado em Variбvel - zNaKa - 17.06.2018

Olб,

Tava querendo pegar o Email na Table do Sqlite e colocar ele em uma Vбriavel, porйm precisa estar indexado a string para por na mesma, qual seria o melhor modo ? pois possui caracteres !



PHP код:
new Query[100];
format(Query, sizeof(Query), "SELECT * FROM `Jogadores` WHERE `Nome`='%q'", pNome(playerid));
Resultado = db_query(DataBase, Query);
if(
db_num_rows(Resultado))
{
    new 
Campo[50];
    
db_get_field_assoc(Resultado, "Email", Campo, sizeof(Campo));
    
pInfo[playerid][Email] = ????;
}
db_free_result(Resultado); 



Re: SQLite Dъvida - Dado em Variбvel - Ermanhaut - 17.06.2018

Код:
db_get_field_assoc(Resultado, "Email", pInfo[playerid][Email], 50);
// Esta funзгo coloca o resultado diretamente da string. db_get_fild_assoc
// Mas se vocк quiser colocar algo em uma string, vocк usa format



Re: SQLite Dъvida - Dado em Variбvel - zNaKa - 17.06.2018

Valeu, obrigado +rep