Updated: 2022/Sep/29
Please read Privacy Policy. It's for your privacy.
SQLITE3_WAL_CHECKPOINT(3) Library Functions Manual SQLITE3_WAL_CHECKPOINT(3) NAME sqlite3_wal_checkpoint - checkpoint a database SYNOPSIS #include <sqlite3.h> int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb); DESCRIPTION The sqlite3_wal_checkpoint(D,X) is equivalent to sqlite3_wal_checkpoint_v2(D,X,SQLITE_CHECKPOINT_PASSIVE,0,0). In brief, sqlite3_wal_checkpoint(D,X) causes the content in the write- ahead log for database X on database connection D to be transferred into the database file and for the write-ahead log to be reset. See the checkpointing documentation for addition information. This interface used to be the only way to cause a checkpoint to occur. But then the newer and more powerful sqlite3_wal_checkpoint_v2() interface was added. This interface is retained for backwards compatibility and as a convenience for applications that need to manually start a callback but which do not need the full power (and corresponding complication) of sqlite3_wal_checkpoint_v2(). IMPLEMENTATION NOTES These declarations were extracted from the interface documentation at line 9472. SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb); SEE ALSO sqlite3(3), sqlite3_wal_checkpoint_v2(3), SQLITE_CHECKPOINT_PASSIVE(3) NetBSD 10.99 August 24, 2023 NetBSD 10.99