Click or drag to resize

SQLiteConnectionSaveTransactionPoint Method

Creates a savepoint in the database at the current point in the transaction timeline. Begins a new transaction if one is not in progress. Call RollbackTo(String) to undo transactions since the returned savepoint. Call Release(String) to commit transactions after the savepoint returned here. Call Commit to end the transaction, committing all changes.

Namespace:  SQLite
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public string SaveTransactionPoint()

Return Value

Type: String
A string naming the savepoint.
See Also