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:
SQLite
Assembly:
RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
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