SA-MP Forums Archive
Помогите с MySQL (BlueG) - 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: Русский/Russian (https://sampforum.blast.hk/forumdisplay.php?fid=32)
+---- Thread: Помогите с MySQL (BlueG) (/showthread.php?tid=462998)



Помогите с MySQL (BlueG) - Day_Jons - 09.09.2013

Не могу разобратся как загрузить string c базы

Код:
House[home][hPosx] = cache_get_field_content_float(0,"posx");
House[home][hPosy] = cache_get_field_content_float(0,"posy");
House[home][hPosz] = cache_get_field_content_float(0,"posz");
House[home][hCarx] = cache_get_field_content_float(0,"carx");
House[home][hCary] = cache_get_field_content_float(0,"cary");
House[home][hCarz] = cache_get_field_content_float(0,"carz");
House[home][hCara] = cache_get_field_content_float(0,"cara");
House[home][hID] = cache_get_field_content_int(0,"id");
House[home][hOwned] = cache_get_field_content_int(0,"owned");
House[home][hInt] = cache_get_field_content_int(0,"int");
House[home][hCena] = cache_get_field_content_int(0,"cena");
House[home][hOpen] = cache_get_field_content_int(0,"open");
House[home][hKlas] = cache_get_field_content_int(0,"klas");
House[home][hUslugi] = cache_get_field_content_int(0,"uslugi");
cache_get_field_name(0, "owner", House[home][hOwner]);
Получаю всю инфу кроме "owner"

Помогите


Re: Помогите с MySQL (BlueG) - Alexander_Petrov - 09.09.2013

cache_get_field_content(0, "owner", House[home][hOwner]);


Re: Помогите с MySQL (BlueG) - Day_Jons - 09.09.2013

Quote:
Originally Posted by Alexander_Petrov
Посмотреть сообщение
cache_get_field_content(0, "owner", House[home][hOwner]);
Не грузит, лог пустой


Re: Помогите с MySQL (BlueG) - Stepashka - 09.09.2013

Попробуй так:
pawn Код:
cache_get_field_content(0, "owner", House[home][hOwner], 1, MAX_PLAYER_NAME);



Re: Помогите с MySQL (BlueG) - Day_Jons - 09.09.2013

Quote:
Originally Posted by Alexander_Petrov
Посмотреть сообщение
cache_get_field_content(0, "owner", House[home][hOwner]);
Quote:
Originally Posted by Stepashka
Посмотреть сообщение
Попробуй так:
pawn Код:
cache_get_field_content(0, "owner", House[home][hOwner], 1, MAX_PLAYER_NAME);
Спасибо, все четко, степашка как всегда меня выручил))