KSQL_UNTRACE(3) | Library Functions Manual | KSQL_UNTRACE(3) |
NAME
ksql_untrace
—
disable SQLite logging
LIBRARY
library “ksql”SYNOPSIS
#include
<sys/types.h>
#include
<stdint.h>
#include
<ksql.h>
enum ksqlc
ksql_untrace
(struct
ksql *sql);
DESCRIPTION
Theksql_untrace
function disables SQLite's
internal error logging facility enabled by
ksql_trace(3).
The ksql_untrace
() function may only be
called prior to ksql_open(3).
RETURN VALUES
This returnsKSQL_ALREADYOPEN
if invoked
after ksql_open(3) or
KSQL_SYSTEM
on system error. Otherwise, it
returns KSQL_OK
.
SEE ALSO
ksql_trace(3)April 21, 2018 | OpenBSD 6.4 |