次の方法で共有


OdbcConnection.BeginTransaction メソッド

メモ : この名前空間、クラス、およびメンバは、.NET Framework Version 1.1 だけでサポートされています。

データ ソースでトランザクションを開始します。

オーバーロードの一覧

データ ソースでトランザクションを開始します。

[Visual Basic] Overloads Public Function BeginTransaction() As OdbcTransaction

[C#] public OdbcTransaction BeginTransaction();

[C++] public: OdbcTransaction* BeginTransaction();

[JScript] public function BeginTransaction() : OdbcTransaction;

指定した IsolationLevel 値を使用して、データ ソースでトランザクションを開始します。

[Visual Basic] Overloads Public Function BeginTransaction(IsolationLevel) As OdbcTransaction

[C#] public OdbcTransaction BeginTransaction(IsolationLevel);

[C++] public: OdbcTransaction* BeginTransaction(IsolationLevel);

[JScript] public function BeginTransaction(IsolationLevel) : OdbcTransaction;

使用例

[Visual Basic, C#, C++] OdbcConnectionOdbcTransaction を作成する例を次に示します。この例では、 BeginTransactionCommitRollback の各メソッドの使い方も示します。

[Visual Basic, C#, C++] メモ   ここでは、BeginTransaction のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。

 
Public Sub RunOdbcTransaction(myConnString As String)
    Dim myConnection As New OdbcConnection(myConnString)
    myConnection.Open()
    
    Dim myCommand As OdbcCommand = myConnection.CreateCommand()
    Dim myTrans As OdbcTransaction
       
    ' Start a local transaction
    myTrans = myConnection.BeginTransaction(IsolationLevel.ReadCommitted)
    ' Assign transaction object for a pending local transaction
    myCommand.Transaction = myTrans
       
 Try
   myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')"
   myCommand.ExecuteNonQuery()
   myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')"
   myCommand.ExecuteNonQuery()
   myTrans.Commit()
   Console.WriteLine("Both records are written to database.")
 Catch e As Exception
   Try
     myTrans.Rollback()
   Catch ex As OdbcException
     If Not myTrans.Connection Is Nothing Then
       Console.WriteLine("An exception of type " & ex.GetType().ToString() & _
                         " was encountered while attempting to roll back the transaction.")
     End If
   End Try

   Console.WriteLine("An exception of type " & e.GetType().ToString() & _
                     "was encountered while inserting the data.")
   Console.WriteLine("Neither record was written to database.")
 Finally
   myConnection.Close()
 End Try
End Sub

[C#] 
public void RunOdbcTransaction(string myConnString)
{
   OdbcConnection myConnection = new OdbcConnection(myConnString);
   myConnection.Open();

   OdbcCommand myCommand = myConnection.CreateCommand();
   OdbcTransaction myTrans;

   // Start a local transaction
   myTrans = myConnection.BeginTransaction(IsolationLevel.ReadCommitted);
   // Assign transaction object for a pending local transaction
   myCommand.Transaction = myTrans;

 try
 {
   myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')";
   myCommand.ExecuteNonQuery();
   myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')";
   myCommand.ExecuteNonQuery();
   myTrans.Commit();
   Console.WriteLine("Both records are written to database.");
 }
 catch(Exception e)
 {
   try
   {
     myTrans.Rollback();
   }
   catch (OdbcException ex)
   {
     if (myTrans.Connection != null)
     {
       Console.WriteLine("An exception of type " + ex.GetType() +
                         " was encountered while attempting to roll back the transaction.");
     }
   }

   Console.WriteLine("An exception of type " + e.GetType() +
                     "was encountered while inserting the data.");
   Console.WriteLine("Neither record was written to database.");
 }
 finally
 {
   myConnection.Close();
 }
}

[C++] 
public:
void RunOdbcTransaction(String* myConnString)
{
    OdbcConnection* myConnection = new OdbcConnection(myConnString);
    myConnection->Open();

    OdbcCommand* myCommand = myConnection->CreateCommand();
    OdbcTransaction* myTrans;

    // Start a local transaction
    myTrans = myConnection->BeginTransaction(IsolationLevel::ReadCommitted);
    // Assign transaction Object* for a pending local transaction
    myCommand->Transaction = myTrans;

    try
    {
        myCommand->CommandText = S"Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')";
        myCommand->ExecuteNonQuery();
        myCommand->CommandText = S"Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')";
        myCommand->ExecuteNonQuery();
        myTrans->Commit();
        Console::WriteLine(S"Both records are written to database.");
    }
    catch (Exception* e)
    {
        try
        {
            myTrans->Rollback();
        }
        catch (OdbcException* ex)
        {
            if (myTrans->Connection != 0)
            {
                Console::WriteLine(S"An exception of type {0} was encountered while attempting to roll back the transaction.", ex->GetType());
            }
        }

    Console::WriteLine(S"An exception of type {0} was encountered while inserting the data.", e->GetType());
    Console::WriteLine(S"Neither record was written to database.");
    }
    myConnection->Close();
};

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

参照

OdbcConnection クラス | OdbcConnection メンバ | System.Data.Odbc 名前空間