SqliteTransaction.Rollback Method

Definition

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.

Applies to