Home
last modified time | relevance | path

Searched refs:sqlite3_wal_hook (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h579 #define sqlite3_wal_hook sqlite3_api->wal_hook macro
H A Dsqlite3.h9540 ** ^The [sqlite3_wal_hook()] function is used to register a callback that
9548 ** is a copy of the third parameter passed to sqlite3_wal_hook() when
9564 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any
9568 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will
9569 ** overwrite any prior [sqlite3_wal_hook()] settings.
9571 SQLITE_API void *sqlite3_wal_hook(
9582 ** [sqlite3_wal_hook()] that causes any database on [database connection] D
9590 ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback
9591 ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism
H A Dsqlite3.c9853 ** ^The [sqlite3_wal_hook()] function is used to register a callback that
9861 ** is a copy of the third parameter passed to sqlite3_wal_hook() when
9877 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any
9881 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will
9882 ** overwrite any prior [sqlite3_wal_hook()] settings.
9884 SQLITE_API void *sqlite3_wal_hook(
9895 ** [sqlite3_wal_hook()] that causes any database on [database connection] D
9903 ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback
9904 ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism
[all...]
/freebsd-src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1939 sqlite3_wal_hook(db, (pDb->pWalHook?DbWalHandler:0), pDb); in DbHookCmd()