SqliteTransaction.Rollback Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Rollback() |
Reverts the changes made in the transaction. |
Rollback(String) |
Rolls back all commands that were executed after the specified savepoint was established. |
Rollback()
Reverts the changes made in the transaction.
public override void Rollback ();
override this.Rollback : unit -> unit
Public Overrides Sub Rollback ()
Applies to
Rollback(String)
Rolls back all commands that were executed after the specified savepoint was established.
public virtual void Rollback (string savepointName);
public override void Rollback (string savepointName);
override this.Rollback : string -> unit
Public Overridable Sub Rollback (savepointName As String)
Public Overrides Sub Rollback (savepointName As String)
Parameters
- savepointName
- String
The name of the savepoint to roll back to.