SQL_FastQuery Function

Executes a query and ignores the result set.

bool SQL_FastQuery(Handle database, const char[] query, int len)

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

True if query succeeded, false otherwise. Use SQL_GetError to find the last error.

Errors

Invalid database Handle.