Click or drag to resize
SQLiteDatabaseConnectionWalCheckPoint Method
Run a checkpoint operation on a WAL database on the connection. The specific operation is determined by the value of the mode parameter.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public void WalCheckPoint(
	string dbName,
	WalCheckPointMode mode,
	out int nLog,
	out int nCkpt
)

Parameters

dbName
Type: SystemString
The database name.
mode
Type: SQLitePCL.prettyWalCheckPointMode
The checkpoint mode to use.
nLog
Type: SystemInt32
Returns the total number of frames in the log file before returning.
nCkpt
Type: SystemInt32
Return the total number of checkpointed frames.

Implements

IDatabaseConnectionWalCheckPoint(String, WalCheckPointMode, Int32, Int32)
See Also