24.03.2018, 01:28
cache_get_field_content => obtem-se a string
cache_get_field_content_int => retorno inteiro
cache_get_field_content_float => retorno float
Neste caso vocк deve saber o nome da coluna.
Exemplo
cache_get_row => obtem-se string
cache_get_row_int => retorno inteiro
cache_get_row_float => retorno float
Neste caso vocк deve saber o valor da coluna no MySQL.
Exemplo
https://sampwiki.blast.hk/wiki/MySQL/R33
cache_get_field_content_int => retorno inteiro
cache_get_field_content_float => retorno float
Neste caso vocк deve saber o nome da coluna.
Exemplo
PHP код:
cache_get_field_content(0, "Senha", APlayerData[playerid][PlayerPassword], *conexгo*, 64);
APlayerData[playerid][PlayerScore] = cache_get_field_content_int(0, "Score", *conexгo*);
APlayerData[playerid][StatsMetersDriven] = cache_get_field_content_float(0, "Metragem", *conexгo*);
cache_get_row_int => retorno inteiro
cache_get_row_float => retorno float
Neste caso vocк deve saber o valor da coluna no MySQL.
Exemplo
PHP код:
cache_get_row(0, 1, APlayerData[playerid][PlayerPassword], *conexгo*, 64);
APlayerData[playerid][PlayerScore] = cache_get_row_int(0, 2, *conexгo*);
APlayerData[playerid][StatsMetersDriven] = cache_get_row_float(0, 3, *conexгo*);