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)
Syntaxpublic void Release(
string savepoint
)
Public Sub Release (
savepoint As String
)
public:
void Release(
String^ savepoint
)
member Release :
savepoint : string -> unit
Parameters
- savepoint
- Type: SystemString
The name of the savepoint to release. The string should be the result of a call to SaveTransactionPoint
See Also