MySQL Question
#2

What are you even trying?


cache_get_field_content_int
if you do not know the field number you can use the field name.

Both the functions are the same but this one accepts a field name where as the one you mentioned accepts the field index.

Код:
new int_dest = cache_get_field_content_int(2, "money");
printf("The value in the third row and in the field 'money' is '%d'.", int_dest);
[code]new int_dest = cache_get_row_int(3, 0);
printf("The number stored in the fourth row and first field is '%d'.", int_dest);
Reply


Messages In This Thread
MySQL Question - by Tony$$ - 10.05.2015, 19:33
Re: MySQL Question - by Yashas - 11.05.2015, 10:41
Re: MySQL Question - by Konstantinos - 11.05.2015, 10:44
Re: MySQL Question - by Tony$$ - 11.05.2015, 18:00
Re: MySQL Question - by Konstantinos - 11.05.2015, 18:25
Re: MySQL Question - by Tony$$ - 12.05.2015, 14:39

Forum Jump:


Users browsing this thread: 2 Guest(s)