[Ajuda] Problema com MySQL - 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] Problema com MySQL (
/showthread.php?tid=570186)
Problema com MySQL -
Juniiro3 - 05.04.2015
Por algum motivo, estou recebendo valores incorretos de minha tabela, quando uso o plugin para SAMP. Eu estou tentando carregar a org, 'getar' o lнder, sub, membros, cofre, etc. O problema й que as strings nгo estгo sendo setadas, estгo vindo vazias.
Consulta SQL:
PHP код:
for (new i = 1; i <= MAX_ORGS; ++i) {
mysql_format(MySQL_Conexao, Query, sizeof(Query), "SELECT * FROM orgs WHERE orgid=%d", i);
mysql_tquery(MySQL_Conexao, Query, "CarregarDadosOrgs", "d", i);
}
public CarregarDadosOrg:
PHP код:
if (cache_num_rows() == 1) {
cache_get_field_content(0, "lider", gOrgsInfo[orgid][Lider]);
cache_get_field_content(0, "sublider", gOrgsInfo[orgid][SubLider]);
cache_get_field_content(0, "membro1", gOrgsInfo[orgid][Membro1]);
cache_get_field_content(0, "membro2", gOrgsInfo[orgid][Membro2]);
.........
cache_get_field_content(0, "membro20", gOrgsInfo[orgid][Membro20]);
}
Vale lembrar que o problema nгo й a consulta, porque o query entra no if (cache_num_rows() == 1), porйm a string gOrgsInfo[orgid][Lider] e todas as outras ficam vazias. O mysql_log tambйm nгo acusa nenhum erro.
Re: Problema com MySQL -
zPain - 05.04.2015
pawn Код:
cache_get_field_content(0, "lider", gOrgsInfo[orgid][Lider], MySQL_Conexao, MAX_PLAYER_NAME);
Uma vez tive esse problema. Resolvi quando coloquei o length. Veja se funciona pra vocк.
Re: Problema com MySQL -
Juniiro3 - 05.04.2015
Valeu, funcionou!