05.06.2012, 01:12
Quote:
|
What I want to know, do ALL my SELECT queries HAVE to be sent to a callback?
Also, can I send the query to the callback, from inside the callback? (like a self submitting form in HTML) Example: pawn Код:
|
Yes it is possible but not recommended. I ran a little test both ways (sending the query in the callback and outside). It turns out, sending the same query, inside it's callback would act like an infinite loop (it keeps executing the query)
whereas sending it from outside the callback only executed it once...this means I'll (we'll) have to create callbacks for EVERY single query.


