Signature
native Handle:SQL_PrepareQuery(Handle:db, const fmt[], any:...);
Description
Prepares a query.
Notes
- This does not actually do a query!
Parameters
- db — Connection handle, returned from SQL_Connect().
- fmt — Query string. Can be formated with format specifiers.
- ... — Additional format specifiers used to format the query.
Returns
Returns an SQL query handle, which must always be freed.
Returns Empty_Handle on failure.