Click or drag to resize

SQLiteConnectionRelease Method

Releases a savepoint returned from SaveTransactionPoint. Releasing a savepoint makes changes since that savepoint permanent if the savepoint began the transaction, or otherwise the changes are permanent pending a call to Commit. The RELEASE command is like a COMMIT for a SAVEPOINT.

Namespace:  Unvired.Kernel.SQLite
Assembly:  Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void Release(
	string savepoint
)

Parameters

savepoint
Type: SystemString
The name of the savepoint to release. The string should be the result of a call to SaveTransactionPoint
See Also