SQLITE3_LOG(3) | Library Functions Manual | SQLITE3_LOG(3) |
sqlite3_log
—
sqlite3_log
(int iErrCode,
const char *zFormat, ...);
The sqlite3_log() interface is intended for use by extensions such as virtual tables, collating functions, and SQL functions. While there is nothing to prevent an application from calling sqlite3_log(), doing so is considered bad form.
The zFormat string must not be NULL.
To avoid deadlocks and other threading problems, the sqlite3_log() routine will not use dynamically allocated memory. The log message is stored in a fixed-length buffer on the stack. If the log message is longer than a few hundred characters, it will be truncated to the length of the buffer.
December 19, 2018 | NetBSD 9.2 |