25.11.2013, 15:32
Quote:
So I can use both mysql_tquery and mysql_query? I've readed, that using R7 and above (with threaded queries) requires ONLY threaded queries.
Now I have to replace all mysql_function_query to mysql_tquery and if I want to get result (errors etc.) I can use mysql_query? Thanks. |
You don't need to replace all your calls to mysql_function_query with mysql_tquery, there is a wrapper for mysql_function_query in the include which calls automatically mysql_tquery (so if you call mysql_function_query you actually call mysql_tquery).
If you want to execute an unthreaded query you'll have to use mysql_query, just like in your problem you initially described.