Click or drag to resize

SQLiteConnectionRollbackTo Method

Rolls back the savepoint created by BeginTransaction or SaveTransactionPoint.

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

Parameters

savepoint
Type: SystemString
The name of the savepoint to roll back to, as returned by SaveTransactionPoint. If savepoint is null or empty, this method is equivalent to a call to Rollback
See Also