SQL_FastQuery

Last Updated2008-03-02
Created At2007-06-01

Executes a query and ignores the result set.

native bool SQL_FastQuery(Handle database, const char[] query, int len = -1)

Parameters

Handle database
A database Handle.
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.