05.11.2012, 17:23
Hello everyone,
I've been learning MYSQL since some days now, so i've been reading about threaded and unthreaded queries in BlueG's MYSQL plugin.
In Plugin R7 - We can only use threaded queries. We can not use mysql_query() anymore since it is an unthreaded query.
1. I want to ask - When a query sent to the sqldb is called threaded and unthreaded? if ConnectionHandle is true then it is threaded? Is it the case?
2. I want to ask - Is the function written below contains a threaded query or not? Is the implementation right?
If anyone can let me know these two things then i would appreciate it a lot.
Thank you
Ballu Miaa
I've been learning MYSQL since some days now, so i've been reading about threaded and unthreaded queries in BlueG's MYSQL plugin.
In Plugin R7 - We can only use threaded queries. We can not use mysql_query() anymore since it is an unthreaded query.
1. I want to ask - When a query sent to the sqldb is called threaded and unthreaded? if ConnectionHandle is true then it is threaded? Is it the case?
2. I want to ask - Is the function written below contains a threaded query or not? Is the implementation right?
pawn Code:
mysql_function_query(dbHandle, "UPDATE players SET level = 544 WHERE id = 1", false, "", "");
Thank you
Ballu Miaa