OdbcConnection.BeginTransaction Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Spustí transakci ve zdroji dat.
Přetížení
| Name | Description |
|---|---|
| BeginTransaction() |
Spustí transakci ve zdroji dat. |
| BeginTransaction(IsolationLevel) |
Spustí transakci ve zdroji dat se zadanou IsolationLevel hodnotou. |
BeginTransaction()
- Zdroj:
- OdbcConnection.cs
- Zdroj:
- OdbcConnection.cs
- Zdroj:
- OdbcConnection.cs
- Zdroj:
- OdbcConnection.cs
Spustí transakci ve zdroji dat.
public:
System::Data::Odbc::OdbcTransaction ^ BeginTransaction();
public System.Data.Odbc.OdbcTransaction BeginTransaction();
override this.BeginTransaction : unit -> System.Data.Odbc.OdbcTransaction
member this.BeginTransaction : unit -> System.Data.Odbc.OdbcTransaction
Public Function BeginTransaction () As OdbcTransaction
Návraty
Objekt představující novou transakci.
Výjimky
Transakce je aktuálně aktivní. Paralelní transakce nejsou podporovány.
Příklady
Následující příklad vytvoří a OdbcConnectionOdbcTransaction. Ukazuje také, jak používat BeginTransaction, Commita Rollback metody.
public static void ExecuteTransaction(string connectionString)
{
using (OdbcConnection connection =
new OdbcConnection(connectionString))
{
OdbcCommand command = new OdbcCommand();
OdbcTransaction transaction = null;
// Set the Connection to the new OdbcConnection.
command.Connection = connection;
// Open the connection and execute the transaction.
try
{
connection.Open();
// Start a local transaction
transaction = connection.BeginTransaction();
// Assign transaction object for a pending local transaction.
command.Connection = connection;
command.Transaction = transaction;
// Execute the commands.
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')";
command.ExecuteNonQuery();
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')";
command.ExecuteNonQuery();
// Commit the transaction.
transaction.Commit();
Console.WriteLine("Both records are written to database.");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
try
{
// Attempt to roll back the transaction.
transaction.Rollback();
}
catch
{
// Do nothing here; transaction is not active.
}
}
// The connection is automatically closed when the
// code exits the using block.
}
}
Public Sub ExecuteTransaction(ByVal connectionString As String)
Using connection As New OdbcConnection(connectionString)
Dim command As New OdbcCommand()
Dim transaction As OdbcTransaction
' Set the Connection to the new OdbcConnection.
command.Connection = connection
' Open the connection and execute the transaction.
Try
connection.Open()
' Start a local transaction.
transaction = connection.BeginTransaction()
' Assign transaction object for a pending local transaction.
command.Connection = connection
command.Transaction = transaction
' Execute the commands.
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')"
command.ExecuteNonQuery()
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')"
command.ExecuteNonQuery()
' Commit the transaction.
transaction.Commit()
Console.WriteLine("Both records are written to database.")
Catch ex As Exception
Console.WriteLine(ex.Message)
' Try to rollback the transaction
Try
transaction.Rollback()
Catch
' Do nothing here; transaction is not active.
End Try
End Try
' The connection is automatically closed when the
' code exits the Using block.
End Using
End Sub
Poznámky
Chcete-li potvrdit nebo vrátit transakce zpět, musíte explicitně použít metody Commit nebo Rollback metody.
Abyste měli jistotu, že .NET Framework Zprostředkovatel dat pro model správy transakcí ODBC funguje správně, vyhněte se použití jiných modelů správy transakcí, jako jsou například modely poskytované zdrojem dat.
Note
Pokud nezadáte úroveň izolace, úroveň izolace bude určena použitým ovladačem. Chcete-li určit úroveň izolace pomocí BeginTransaction metody, použijte přetížení, které přebírá isolevel parametr.
Viz také
Platí pro
BeginTransaction(IsolationLevel)
- Zdroj:
- OdbcConnection.cs
- Zdroj:
- OdbcConnection.cs
- Zdroj:
- OdbcConnection.cs
- Zdroj:
- OdbcConnection.cs
Spustí transakci ve zdroji dat se zadanou IsolationLevel hodnotou.
public:
System::Data::Odbc::OdbcTransaction ^ BeginTransaction(System::Data::IsolationLevel isolevel);
public System.Data.Odbc.OdbcTransaction BeginTransaction(System.Data.IsolationLevel isolevel);
override this.BeginTransaction : System.Data.IsolationLevel -> System.Data.Odbc.OdbcTransaction
member this.BeginTransaction : System.Data.IsolationLevel -> System.Data.Odbc.OdbcTransaction
Public Function BeginTransaction (isolevel As IsolationLevel) As OdbcTransaction
Parametry
- isolevel
- IsolationLevel
Úroveň izolace transakcí pro toto připojení. Pokud nezadáte úroveň izolace, použije se výchozí úroveň izolace pro ovladač.
Návraty
Objekt představující novou transakci.
Výjimky
Transakce je aktuálně aktivní. Paralelní transakce nejsou podporovány.
Příklady
Následující příklad vytvoří a OdbcConnectionOdbcTransaction. Ukazuje také, jak používat BeginTransaction, Commita Rollback metody.
public static void ExecuteTransaction(string connectionString)
{
using (OdbcConnection connection =
new OdbcConnection(connectionString))
{
OdbcCommand command = new OdbcCommand();
OdbcTransaction transaction = null;
// Set the Connection to the new OdbcConnection.
command.Connection = connection;
// Open the connection and execute the transaction.
try
{
connection.Open();
// Start a local transaction
transaction = connection.BeginTransaction();
// Assign transaction object for a pending local transaction.
command.Connection = connection;
command.Transaction = transaction;
// Execute the commands.
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')";
command.ExecuteNonQuery();
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')";
command.ExecuteNonQuery();
// Commit the transaction.
transaction.Commit();
Console.WriteLine("Both records are written to database.");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
try
{
// Attempt to roll back the transaction.
transaction.Rollback();
}
catch
{
// Do nothing here; transaction is not active.
}
}
// The connection is automatically closed when the
// code exits the using block.
}
}
Public Sub ExecuteTransaction(ByVal connectionString As String)
Using connection As New OdbcConnection(connectionString)
Dim command As New OdbcCommand()
Dim transaction As OdbcTransaction
' Set the Connection to the new OdbcConnection.
command.Connection = connection
' Open the connection and execute the transaction.
Try
connection.Open()
' Start a local transaction.
transaction = connection.BeginTransaction()
' Assign transaction object for a pending local transaction.
command.Connection = connection
command.Transaction = transaction
' Execute the commands.
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')"
command.ExecuteNonQuery()
command.CommandText =
"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')"
command.ExecuteNonQuery()
' Commit the transaction.
transaction.Commit()
Console.WriteLine("Both records are written to database.")
Catch ex As Exception
Console.WriteLine(ex.Message)
' Try to rollback the transaction
Try
transaction.Rollback()
Catch
' Do nothing here; transaction is not active.
End Try
End Try
' The connection is automatically closed when the
' code exits the Using block.
End Using
End Sub
Poznámky
Chcete-li potvrdit nebo vrátit transakce zpět, musíte explicitně použít metody Commit nebo Rollback metody.
Abyste měli jistotu, že .NET Framework Zprostředkovatel dat pro model správy transakcí ODBC funguje správně, vyhněte se použití jiných modelů správy transakcí, jako jsou například modely poskytované zdrojem dat.