Searched refs:sqlite3_commit_hook (Results 1 – 4 of 4) sorted by relevance
/freebsd-src/contrib/sqlite3/ |
H A D | sqlite3ext.h | 435 #define sqlite3_commit_hook sqlite3_api->commit_hook macro
|
H A D | sqlite3.h | 6744 ** ^The sqlite3_commit_hook() interface registers a callback 6746 ** ^Any callback set by a previous call to sqlite3_commit_hook() 6756 ** ^The sqlite3_commit_hook(D,C,P) and sqlite3_rollback_hook(D,C,P) functions 6787 SQLITE_API void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*); 6908 ** See also the [sqlite3_commit_hook()], [sqlite3_rollback_hook()],
|
H A D | sqlite3.c | 7057 ** ^The sqlite3_commit_hook() interface registers a callback 7059 ** ^Any callback set by a previous call to sqlite3_commit_hook() 7069 ** ^The sqlite3_commit_hook(D,C,P) and sqlite3_rollback_hook(D,C,P) functions 7100 SQLITE_API void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*); 7221 ** See also the [sqlite3_commit_hook()], [sqlite3_rollback_hook()], [all...] |
/freebsd-src/contrib/sqlite3/tea/generic/ |
H A D | tclsqlite3.c | 2354 sqlite3_commit_hook(pDb->db, DbCommitHandler, pDb); in DbObjCmd() 2356 sqlite3_commit_hook(pDb->db, 0, 0); in DbObjCmd()
|