Help with MYSQL 41-4
#7

Only the cache functions that are used when loading data have been changed (retrieving data and getting number of rows). You save as you would save in R34 version.

https://sampwiki.blast.hk/wiki/MySQL/R33#Cache_functions -> https://sampwiki.blast.hk/wiki/MySQL#Cache_functions

For example, loading an integer from 4th row and 1st column:
pawn Код:
//R34
new int_dest = cache_get_row_int(3, 0);
would become:
pawn Код:
// R41-4
new int_dest;
cache_get_value_index_int(3, 0, int_dest);

// or

new int_dest;
cache_get_value_int(3, 0, int_dest);
By reading the description of the functions can be easy to recognize which function was renamed into what.
Reply


Messages In This Thread
Help with MYSQL 41-4 - by Mark_Whittaker - 16.09.2018, 17:29
Re: Help with MYSQL 41-4 - by Tenka - 16.09.2018, 17:40
Re: Help with MYSQL 41-4 - by solstice_ - 16.09.2018, 17:46
Re: Help with MYSQL 41-4 - by Mark_Whittaker - 16.09.2018, 17:55
Re: Help with MYSQL 41-4 - by Mark_Whittaker - 16.09.2018, 18:42
Re: Help with MYSQL 41-4 - by Mobtiesgangsa - 16.09.2018, 19:00
Re: Help with MYSQL 41-4 - by Calisthenics - 16.09.2018, 19:11

Forum Jump:


Users browsing this thread: 2 Guest(s)