04.12.2014, 13:02
(
Последний раз редактировалось Lordzy; 04.12.2014 в 16:01.
)
Nice tutorial, calling out threaded queries just once outside a function was always a mess.
It means that you cannot use arrays (multi dimensional variables) within the inline function and also while passing an inline function, you must have ATLEAST 1 parameter.
I don't use YSI, but from what Jay_ has mentioned, I suppose that's it. Feel free to correct me if I'm wrong.
Quote:
I was already using y_inline on Dialogs but not on MySQL.
What you mean with this two: Can you please provide an example? Thanks - Anyway nice job is an nice tutorial. |
pawn Код:
inline Query_OnFetchName(nick[])
//I suppose this isn't possible because 'nick' is an array.
//EDIT: YOU CAN ACTUALLY;
inline Query_OnFetchName(string:nick[])
//You must use the "string:" tag for strings.
inline Query_GetCounts()
//Neither possible because it doesn't have any parameter.