1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Add an option to register global hooks used for logging all SQL executed by an application.

FossilOrigin-Name: cd501bbccf3e62b002317592cc331770b32c129a
This commit is contained in:
dan
2012-11-26 19:50:41 +00:00
parent 6d405c2cb7
commit ac45593931
9 changed files with 520 additions and 14 deletions

View File

@@ -175,6 +175,10 @@ SQLITE_WSD struct Sqlite3Config sqlite3Config = {
0, /* xLog */
0, /* pLogArg */
0, /* bLocaltimeFault */
#ifdef SQLITE_ENABLE_SQLLOG
0, /* xSqllog */
0 /* pSqllogArg */
#endif
};