SQL_FastQuery
Executes a query and ignores the result set.
native bool SQL_FastQuery(Handle database, const char[] query, int len = -1)Parameters
const char[] query
Query string.
int len
Optional parameter to specify the query length, in
bytes. This can be used to send binary queries that
have a premature terminator.
Return Value
bool True if query succeeded, false otherwise. Use
SQL_GetError to find the last error.Error
Invalid database Handle.