Searched refs:sqlite3_wal_hook (Results 1 – 4 of 4) sorted by relevance
579 #define sqlite3_wal_hook sqlite3_api->wal_hook macro
9540 ** ^The [sqlite3_wal_hook()] function is used to register a callback that9548 ** is a copy of the third parameter passed to sqlite3_wal_hook() when9564 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any9568 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will9569 ** 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] D9590 ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback9591 ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism
9853 ** ^The [sqlite3_wal_hook()] function is used to register a callback that9861 ** is a copy of the third parameter passed to sqlite3_wal_hook() when9877 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any9881 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will9882 ** 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] D9903 ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback9904 ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism[all...]
1939 sqlite3_wal_hook(db, (pDb->pWalHook?DbWalHandler:0), pDb); in DbHookCmd()