|
NAMEksql_stmt_free —
free a statement on a database connection
LIBRARYlibrary “ksql”SYNOPSIS#include <sys/types.h>
#include <stdint.h>
#include <ksql.h>
enum ksqlc
DESCRIPTIONTheksql_stmt_free function frees a statement allocated
with
ksql_stmt_alloc(3),
invoking
sqlite3_finalize(3)
on the underlying statement. This does nothing if stmt
is NULL .
RETURN VALUESReturnsKSQL_OK on success or another error on failure.
Note: this does not return the code of
sqlite3_finalize(3),
which itself returns the code of the last step and not the failure of the
resource de-allocation.
SEE ALSOsqlite3_finalize(3)
Visit the GSP FreeBSD Man Page Interface. |