SqlTransaction.Rollback Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Esegue il rollback di una transazione da uno stato in sospeso.
Overload
| Nome | Descrizione |
|---|---|
| Rollback() |
Esegue il rollback di una transazione da uno stato in sospeso. |
| Rollback(String) |
Esegue il rollback di una transazione da uno stato in sospeso e specifica il nome della transazione o del punto di salvataggio. |
Rollback()
Esegue il rollback di una transazione da uno stato in sospeso.
public:
virtual void Rollback();
public:
override void Rollback();
public void Rollback();
public override void Rollback();
abstract member Rollback : unit -> unit
override this.Rollback : unit -> unit
override this.Rollback : unit -> unit
Public Sub Rollback ()
Public Overrides Sub Rollback ()
Implementazioni
Eccezioni
Si è verificato un errore durante il tentativo di eseguire il commit della transazione.
È già stato eseguito il commit o il rollback della transazione.
oppure
La connessione è interrotta.
Esempio
Nell'esempio seguente viene creato un SqlConnection oggetto e un oggetto SqlTransaction. Viene inoltre illustrato come usare i BeginTransactionmetodi , Commite Rollback . Viene eseguito il rollback della transazione in caso di errore.
Try
/
Catch la gestione degli errori viene usata per gestire eventuali errori durante il tentativo di eseguire il commit o il rollback della transazione.
private static void ExecuteSqlTransaction(string connectionString)
{
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
SqlCommand command = connection.CreateCommand();
SqlTransaction transaction;
// Start a local transaction.
transaction = connection.BeginTransaction();
// Must assign both transaction object and connection
// to Command object for a pending local transaction
command.Connection = connection;
command.Transaction = transaction;
try
{
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')";
command.ExecuteNonQuery();
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')";
command.ExecuteNonQuery();
// Attempt to commit the transaction.
transaction.Commit();
Console.WriteLine("Both records are written to database.");
}
catch (Exception ex)
{
Console.WriteLine("Commit Exception Type: {0}", ex.GetType());
Console.WriteLine(" Message: {0}", ex.Message);
// Attempt to roll back the transaction.
try
{
transaction.Rollback();
}
catch (Exception ex2)
{
// This catch block will handle any errors that may have occurred
// on the server that would cause the rollback to fail, such as
// a closed connection.
Console.WriteLine("Rollback Exception Type: {0}", ex2.GetType());
Console.WriteLine(" Message: {0}", ex2.Message);
}
}
}
}
Private Sub ExecuteSqlTransaction(ByVal connectionString As String)
Using connection As New SqlConnection(connectionString)
connection.Open()
Dim command As SqlCommand = connection.CreateCommand()
Dim transaction As SqlTransaction
' Start a local transaction
transaction = connection.BeginTransaction()
' Must assign both transaction object and connection
' to Command object for a pending local transaction.
command.Connection = connection
command.Transaction = transaction
Try
command.CommandText = _
"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')"
command.ExecuteNonQuery()
command.CommandText = _
"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')"
command.ExecuteNonQuery()
' Attempt to commit the transaction.
transaction.Commit()
Console.WriteLine("Both records are written to database.")
Catch ex As Exception
Console.WriteLine("Commit Exception Type: {0}", ex.GetType())
Console.WriteLine(" Message: {0}", ex.Message)
' Attempt to roll back the transaction.
Try
transaction.Rollback()
Catch ex2 As Exception
' This catch block will handle any errors that may have occurred
' on the server that would cause the rollback to fail, such as
' a closed connection.
Console.WriteLine("Rollback Exception Type: {0}", ex2.GetType())
Console.WriteLine(" Message: {0}", ex2.Message)
End Try
End Try
End Using
End Sub
Commenti
Il metodo Rollback equivale all'istruzione ROLLBACK TRANSACTION Transact-SQL. Per altre informazioni, vedere ROLLBACK TRANSACTION (Transact-SQL) .
Il rollback della transazione può essere eseguito solo da uno stato in sospeso (dopo BeginTransaction essere stato chiamato, ma prima Commit viene chiamato). Viene eseguito il rollback della transazione nell'evento che viene eliminato prima Commit o Rollback viene chiamato.
Note
Try
/
Catch La gestione delle eccezioni deve essere sempre usata quando si esegue il rollback di una transazione. Genera Rollback un oggetto InvalidOperationException se la connessione viene terminata o se è già stato eseguito il rollback della transazione nel server.
Per altre informazioni sulle transazioni SQL Server, vedere Transactions (Transact-SQL).
Vedi anche
Si applica a
Rollback(String)
Esegue il rollback di una transazione da uno stato in sospeso e specifica il nome della transazione o del punto di salvataggio.
public:
void Rollback(System::String ^ transactionName);
public void Rollback(string transactionName);
member this.Rollback : string -> unit
override this.Rollback : string -> unit
Public Sub Rollback (transactionName As String)
Parametri
- transactionName
- String
Nome della transazione di cui eseguire il rollback o punto di salvataggio in cui eseguire il rollback.
Eccezioni
Non è stato specificato alcun nome di transazione.
È già stato eseguito il commit o il rollback della transazione.
oppure
La connessione è interrotta.
Esempio
Nell'esempio seguente viene creato un SqlConnection oggetto e un oggetto SqlTransaction. Viene inoltre illustrato come usare i BeginTransactionmetodi , Commite Rollback . Viene eseguito il rollback della transazione in caso di errore.
Try
/
Catch la gestione degli errori viene usata per gestire eventuali errori durante il tentativo di eseguire il commit o il rollback della transazione.
private static void ExecuteSqlTransaction(string connectionString)
{
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
SqlCommand command = connection.CreateCommand();
SqlTransaction transaction;
// Start a local transaction.
transaction = connection.BeginTransaction("SampleTransaction");
// Must assign both transaction object and connection
// to Command object for a pending local transaction
command.Connection = connection;
command.Transaction = transaction;
try
{
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')";
command.ExecuteNonQuery();
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')";
command.ExecuteNonQuery();
// Attempt to commit the transaction.
transaction.Commit();
Console.WriteLine("Both records are written to database.");
}
catch (Exception ex)
{
Console.WriteLine("Commit Exception Type: {0}", ex.GetType());
Console.WriteLine(" Message: {0}", ex.Message);
// Attempt to roll back the transaction.
try
{
transaction.Rollback("SampleTransaction");
}
catch (Exception ex2)
{
// This catch block will handle any errors that may have occurred
// on the server that would cause the rollback to fail, such as
// a closed connection.
Console.WriteLine("Rollback Exception Type: {0}", ex2.GetType());
Console.WriteLine(" Message: {0}", ex2.Message);
}
}
}
}
Private Sub ExecuteSqlTransaction(ByVal connectionString As String)
Using connection As New SqlConnection(connectionString)
connection.Open()
Dim command As SqlCommand = connection.CreateCommand()
Dim transaction As SqlTransaction
' Start a local transaction
transaction = connection.BeginTransaction("SampleTransaction")
' Must assign both transaction object and connection
' to Command object for a pending local transaction.
command.Connection = connection
command.Transaction = transaction
Try
command.CommandText = _
"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')"
command.ExecuteNonQuery()
command.CommandText = _
"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')"
command.ExecuteNonQuery()
' Attempt to commit the transaction.
transaction.Commit()
Console.WriteLine("Both records are written to database.")
Catch ex As Exception
Console.WriteLine("Exception Type: {0}", ex.GetType())
Console.WriteLine(" Message: {0}", ex.Message)
' Attempt to roll back the transaction.
Try
transaction.Rollback("SampleTransaction")
Catch ex2 As Exception
' This catch block will handle any errors that may have occurred
' on the server that would cause the rollback to fail, such as
' a closed connection.
Console.WriteLine("Rollback Exception Type: {0}", ex2.GetType())
Console.WriteLine(" Message: {0}", ex2.Message)
End Try
End Try
End Using
End Sub
Commenti
Il metodo Rollback equivale all'istruzione ROLLBACK TRANSACTION Transact-SQL. Per altre informazioni, vedere Transactions (Transact-SQL).
Il rollback della transazione può essere eseguito solo da uno stato in sospeso (dopo BeginTransaction essere stato chiamato, ma prima Commit viene chiamato). Viene eseguito il rollback della transazione se viene eliminato prima Commit o Rollback viene chiamato.
Note
Try
/
Catch La gestione delle eccezioni deve essere sempre usata quando si esegue il rollback di una transazione. Genera Rollback un oggetto InvalidOperationException se la connessione viene terminata o se è già stato eseguito il rollback della transazione nel server.
Per altre informazioni sulle transazioni SQL Server, vedere Transactions (Transact-SQL).