Race record
#7

Well it's working now, but i got an another problem, my mysql_GetString stock isn't working, when i printed it, it's returning just "(NULL)", so... nothing.


Код:
stock mysql_GetString(Table[], Field[], Where[], Is[])
{
    new query[128], Get[128];
    mysql_real_escape_string(Table, Table,mysql);
    mysql_real_escape_string(Field, Field,mysql);
    mysql_real_escape_string(Where, Where,mysql);
    mysql_real_escape_string(Is, Is,mysql);
    format(query, 128, "SELECT %s FROM %s WHERE %s = '%s'", Field, Table, Where, Is);
    mysql_query(query,-1,0,mysql);
    mysql_store_result(mysql);
    mysql_fetch_row(Get);
    return Get;
}
Код:
print(mysql_GetString("Rekordy","Gracz","Misja","PustynnyMaraton1"));
Reply


Messages In This Thread
Race record - by Msk. - 30.03.2013, 13:31
Re: Race record - by RajatPawar - 30.03.2013, 13:52
AW: Re: Race record - by Nero_3D - 30.03.2013, 14:11
Re: Race record - by RajatPawar - 30.03.2013, 14:12
Re: Race record - by Babul - 30.03.2013, 14:57
Re: Race record - by RajatPawar - 30.03.2013, 15:05
Re: Race record - by Msk. - 30.03.2013, 15:11

Forum Jump:


Users browsing this thread: 1 Guest(s)