TransactionScopeとは? わかりやすく解説

TransactionScope クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

コード ブロックトランザクションにします。このクラス継承できません。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

Public NotInheritable Class
 TransactionScope
    Implements IDisposable
Dim instance As TransactionScope
public sealed class TransactionScope : IDisposable
public ref class TransactionScope sealed :
 IDisposable
public final class TransactionScope implements
 IDisposable
public final class TransactionScope implements
 IDisposable
解説解説

System.Transactions インフラストラクチャは、Transaction クラスに基づく明示的なプログラミング モデルだけでなく、インフラストラクチャトランザクション自動的に管理するTransactionScope クラス使用した暗黙プログラミング モデル提供します

メモ重要 :

TransactionScope クラス使用して暗黙トランザクション作成しアンビエント トランザクション コンテキスト自動的に管理することをお勧めます。複数関数呼び出しまたは複数スレッド呼び出しで同じトランザクション使用する必要のあるアプリケーション向けに、TransactionScope クラスおよび DependentTransaction クラス使用する必要もあります。このモデル詳細については、「トランザクション スコープ使用した暗黙的なトランザクション実装」を参照してくださいトランザクション アプリケーション記述詳細については、「トランザクション アプリケーション作成」を参照してください

new ステートメントTransactionScopeインスタンス化すると、トランザクション マネージャによって参加するトランザクション決定されます。いったん決定されると、このスコープは常にそのトランザクション参加します。この決定2 つ要因基づいて行われます1 つアンビエント トランザクション存在するかどうか、もう 1 つコンストラクタTransactionScopeOption パラメータの値です。アンビエント トランザクションとは、その中でコード実行されるトランザクションです。Transaction クラス静的 Current プロパティ呼び出すことによってアンビエント トランザクションへの参照取得できます。このパラメータ使用方法詳細については、「トランザクション スコープ使用した暗黙的なトランザクション実装」で、トランザクション フロー管理についての説明参照してください

トランザクション スコープ内 (つまり、TransactionScope オブジェクト初期化からその Dispose メソッド呼び出しまでの間) で例外発生しなかった場合スコープ参加しているトランザクション続行できますトランザクション スコープ内で例外発生した場合スコープ参加しているトランザクションロールバックされます

アプリケーショントランザクション内で実行する必要のあるすべての作業完了したら、トランザクション マネージャトランザクションコミットできること知らせるために、Complete メソッド一度だけ呼び出す必要があります。このメソッド呼び出さないと、トランザクション中止されます。

Dispose メソッド呼び出しによって、トランザクション スコープ末尾マークされます。このメソッド呼び出し後に発生した例外は、トランザクション影響しない場合あります

スコープ内で Current の値を変更すると、Dispose呼び出したときに例外スローさます。ただし、スコープ末尾では以前の値が復元されます。また、トランザクション作成したトランザクション スコープ内のCurrentDispose呼び出した場合、このトランザクションスコープ末尾中止されます。

使用例使用例

次の例では、TransactionScope クラス使用してトランザクション参加するコード ブロック定義する方法示します

'  This function takes arguments for 2 connection strings and commands
 to create a transaction 
'  involving two SQL Servers. It returns a value > 0 if the transaction
 is committed, 0 if the 
'  transaction is rolled back. To test this code, you can connect to
 two different databases 
'  on the same server by altering the connection string, or to another
 RDBMS such as Oracle 
'  by altering the code in the connection2 code block.
Public Function CreateTransactionScope( _
  ByVal connectString1 As String,
 ByVal connectString2 As String,
 _
  ByVal commandText1 As String,
 ByVal commandText2 As String)
 As Integer

    ' Initialize the return value to zero and create a StringWriter
 to display results.
    Dim returnValue As Integer
 = 0
    Dim writer As System.IO.StringWriter =
 New System.IO.StringWriter

    ' Create the TransactionScope to execute the commands, guaranteeing
    '  that both commands can commit or roll back as a single unit of
 work.
    Using scope As New TransactionScope()
        Using connection1 As New SqlConnection(connectString1)
            Try
                ' Opening the connection automatically enlists it in
 the 
                ' TransactionScope as a lightweight transaction.
                connection1.Open()

                ' Create the SqlCommand object and execute the first
 command.
                Dim command1 As SqlCommand
 = New SqlCommand(commandText1, connection1)
                returnValue = command1.ExecuteNonQuery()
                writer.WriteLine("Rows to be affected by command1:
 {0}", returnValue)

                ' If you get here, this means that command1 succeeded.
 By nesting
                ' the using block for connection2 inside that of connection1,
 you
                ' conserve server and network resources as connection2
 is opened
                ' only when there is a chance that the transaction can
 commit.   
                 Using connection2 As New SqlConnection(connectString2)
                    Try
                        ' The transaction is escalated to a full distributed
                        ' transaction when connection2 is opened.
                        connection2.Open()

                        ' Execute the second command in the second database.
                        returnValue = 0
                        Dim command2 As SqlCommand
 = New SqlCommand(commandText2, connection2)
                        returnValue = command2.ExecuteNonQuery()
                        writer.WriteLine("Rows to be affected
 by command2: {0}", returnValue)

                    Catch ex As Exception
                        ' Display information that command2 failed.
                        writer.WriteLine("returnValue for command2:
 {0}", returnValue)
                        writer.WriteLine("Exception Message2:
 {0}", ex.Message)
                    End Try
                End Using

            Catch ex As Exception
                ' Display information that command1 failed.
                writer.WriteLine("returnValue for command1: {0}",
 returnValue)
                writer.WriteLine("Exception Message1: {0}",
 ex.Message)
            End Try
        End Using

        ' The Complete method commits the transaction. If an exception
 has been thrown,
        ' Complete is called and the transaction is rolled back.
        scope.Complete()
    End Using

    ' The returnValue is greater than 0 if the transaction committed.
    If returnValue > 0 Then
        writer.WriteLine("Transaction was committed.")
    Else
       ' You could write additional business logic here, for example,
 you can notify the caller 
       ' by throwing a TransactionAbortedException, or logging the failure.
       writer.WriteLine("Transaction rolled back.")
     End If

    ' Display messages.
    Console.WriteLine(writer.ToString())

    Return returnValue
End Function
// This function takes arguments for 2 connection strings and commands
 to create a transaction 
// involving two SQL Servers. It returns a value > 0 if the transaction
 is committed, 0 if the 
// transaction is rolled back. To test this code, you can connect to
 two different databases 
// on the same server by altering the connection string, or to another
 RDBMS such as Oracle 
// by altering the code in the connection2 code block.
static public int CreateTransactionScope(
    string connectString1, string connectString2
,
    string commandText1, string commandText2)
{
    // Initialize the return value to zero and create a StringWriter
 to display results.
    int returnValue = 0;
    System.IO.StringWriter writer = new System.IO.StringWriter();

    // Create the TransactionScope to execute the commands, guaranteeing
    // that both commands can commit or roll back as a single unit of
 work.
    using (TransactionScope scope = new TransactionScope())
    {
        using (SqlConnection connection1 = new
 SqlConnection(connectString1))
        {
            try
            {
                // Opening the connection automatically enlists it in
 the 
                // TransactionScope as a lightweight transaction.
                connection1.Open();

                // Create the SqlCommand object and execute the first
 command.
                SqlCommand command1 = new SqlCommand(commandText1,
 connection1);
                returnValue = command1.ExecuteNonQuery();
                writer.WriteLine("Rows to be affected by command1: {0}",
 returnValue);

                // If you get here, this means that command1 succeeded.
 By nesting
                // the using block for connection2 inside that of connection1,
 you
                // conserve server and network resources as connection2
 is opened
                // only when there is a chance that the transaction
 can commit.   
                using (SqlConnection connection2 = new
 SqlConnection(connectString2))
                    try
                    {
                        // The transaction is escalated to a full distributed
                        // transaction when connection2 is opened.
                        connection2.Open();

                        // Execute the second command in the second
 database.
                        returnValue = 0;
                        SqlCommand command2 = new SqlCommand(commandText2,
 connection2);
                        returnValue = command2.ExecuteNonQuery();
                        writer.WriteLine("Rows to be affected by command2: {0}",
 returnValue);
                    }
                    catch (Exception ex)
                    {
                        // Display information that command2 failed.
                        writer.WriteLine("returnValue for
 command2: {0}", returnValue);
                        writer.WriteLine("Exception Message2: {0}", ex.Message);
                    }
            }
            catch (Exception ex)
            {
                // Display information that command1 failed.
                writer.WriteLine("returnValue for command1:
 {0}", returnValue);
                writer.WriteLine("Exception Message1: {0}", ex.Message);
            }
        }

        // The Complete method commits the transaction. If an exception
 has been thrown,
        // Complete is not  called and the transaction is rolled back.
        scope.Complete();
    }

    // The returnValue is greater than 0 if the transaction committed.
    if (returnValue > 0)
    {
        writer.WriteLine("Transaction was committed.");
    }
    else
    {
        // You could write additional business logic here, for example,
 you can notify the caller 
        // by throwing a TransactionAbortedException, or logging the
 failure.
        writer.WriteLine("Transaction rolled back.");
    }

    // Display messages.
    Console.WriteLine(writer.ToString());

    return returnValue;
}
継承階層継承階層
System.Object
  System.Transactions.TransactionScope
スレッド セーフスレッド セーフ

この型は、マルチスレッド操作に対して安全です。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TransactionScope コンストラクタ ()

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

TransactionScope クラス新しインスタンス初期化します。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

Dim instance As New TransactionScope
public TransactionScope ()
public:
TransactionScope ()
public TransactionScope ()
public function TransactionScope ()
解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TransactionScope コンストラクタ (TransactionScopeOption, TimeSpan)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

タイムアウト値と要件指定して、TransactionScope クラス新しインスタンス初期化します。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

Public Sub New ( _
    scopeOption As TransactionScopeOption, _
    scopeTimeout As TimeSpan _
)
Dim scopeOption As TransactionScopeOption
Dim scopeTimeout As TimeSpan

Dim instance As New TransactionScope(scopeOption,
 scopeTimeout)
public TransactionScope (
    TransactionScopeOption scopeOption,
    TimeSpan scopeTimeout
)
public:
TransactionScope (
    TransactionScopeOption scopeOption, 
    TimeSpan scopeTimeout
)
public TransactionScope (
    TransactionScopeOption scopeOption, 
    TimeSpan scopeTimeout
)
public function TransactionScope (
    scopeOption : TransactionScopeOption, 
    scopeTimeout : TimeSpan
)

パラメータ

scopeOption

このトランザクション スコープ関連付けられているトランザクション要件を示す TransactionScopeOption 列挙体のインスタンス

scopeTimeout

トランザクション スコープタイムアウトしてトランザクション中止されるまでの TimeSpan。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TransactionScope コンストラクタ (TransactionScopeOption)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

要件指定して、TransactionScope クラス新しインスタンス初期化します。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

Public Sub New ( _
    scopeOption As TransactionScopeOption _
)
Dim scopeOption As TransactionScopeOption

Dim instance As New TransactionScope(scopeOption)
public TransactionScope (
    TransactionScopeOption scopeOption
)
public:
TransactionScope (
    TransactionScopeOption scopeOption
)
public TransactionScope (
    TransactionScopeOption scopeOption
)
public function TransactionScope (
    scopeOption : TransactionScopeOption
)

パラメータ

scopeOption

このトランザクション スコープ関連付けられているトランザクション要件を示す TransactionScopeOption 列挙体のインスタンス

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TransactionScope コンストラクタ (Transaction)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

TransactionScope クラス新しインスタンス初期化し指定したトランザクションアンビエント トランザクションとして設定します。これによって、スコープ内で実行されるトランザクション作業でこのトランザクション使用されます。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

Public Sub New ( _
    transactionToUse As Transaction _
)
Dim transactionToUse As Transaction

Dim instance As New TransactionScope(transactionToUse)
public TransactionScope (
    Transaction transactionToUse
)
public:
TransactionScope (
    Transaction^ transactionToUse
)
public TransactionScope (
    Transaction transactionToUse
)
public function TransactionScope (
    transactionToUse : Transaction
)

パラメータ

transactionToUse

スコープ内で実行されるトランザクション作業でこのトランザクション使用されるように、アンビエント トランザクションとして設定するトランザクション

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TransactionScope コンストラクタ (Transaction, TimeSpan)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

タイムアウト値を指定して TransactionScope クラス新しインスタンス初期化し指定したトランザクションアンビエント トランザクションとして設定します。これによって、スコープ内で実行されるトランザクション作業でこのトランザクション使用されます。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

Public Sub New ( _
    transactionToUse As Transaction, _
    scopeTimeout As TimeSpan _
)
Dim transactionToUse As Transaction
Dim scopeTimeout As TimeSpan

Dim instance As New TransactionScope(transactionToUse,
 scopeTimeout)
public TransactionScope (
    Transaction transactionToUse,
    TimeSpan scopeTimeout
)
public:
TransactionScope (
    Transaction^ transactionToUse, 
    TimeSpan scopeTimeout
)
public TransactionScope (
    Transaction transactionToUse, 
    TimeSpan scopeTimeout
)
public function TransactionScope (
    transactionToUse : Transaction, 
    scopeTimeout : TimeSpan
)

パラメータ

transactionToUse

スコープ内で実行されるトランザクション作業でこのトランザクション使用されるように、アンビエント トランザクションとして設定するトランザクション

scopeTimeout

トランザクション スコープタイムアウトしてトランザクション中止されるまでの TimeSpan。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TransactionScope コンストラクタ (TransactionScopeOption, TransactionOptions)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

要件指定して、TransactionScope クラス新しインスタンス初期化します。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

Public Sub New ( _
    scopeOption As TransactionScopeOption, _
    transactionOptions As TransactionOptions _
)
Dim scopeOption As TransactionScopeOption
Dim transactionOptions As TransactionOptions

Dim instance As New TransactionScope(scopeOption,
 transactionOptions)
public TransactionScope (
    TransactionScopeOption scopeOption,
    TransactionOptions transactionOptions
)
public:
TransactionScope (
    TransactionScopeOption scopeOption, 
    TransactionOptions transactionOptions
)
public TransactionScope (
    TransactionScopeOption scopeOption, 
    TransactionOptions transactionOptions
)
public function TransactionScope (
    scopeOption : TransactionScopeOption, 
    transactionOptions : TransactionOptions
)

パラメータ

scopeOption

このトランザクション スコープ関連付けられているトランザクション要件を示す TransactionScopeOption 列挙体のインスタンス

transactionOptions

新しトランザクション作成され場合使用するトランザクション オプションを示す TransactionOptions 構造体既存トランザクション使用する場合は、このパラメータタイムアウト値がトランザクション スコープ適用されます。スコープ破棄する前にその時間が経過してしまうと、トランザクション中止されます。

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TransactionScope コンストラクタ (Transaction, TimeSpan, EnterpriseServicesInteropOption)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

タイムアウト値と COM+ 相互運用性要件指定して TransactionScope クラス新しインスタンス初期化し指定したトランザクションアンビエント トランザクションとして設定します。これによって、スコープ内で実行されるトランザクション作業でこのトランザクション使用されます。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

Public Sub New ( _
    transactionToUse As Transaction, _
    scopeTimeout As TimeSpan, _
    interopOption As EnterpriseServicesInteropOption _
)
Dim transactionToUse As Transaction
Dim scopeTimeout As TimeSpan
Dim interopOption As EnterpriseServicesInteropOption

Dim instance As New TransactionScope(transactionToUse,
 scopeTimeout, interopOption)
public TransactionScope (
    Transaction transactionToUse,
    TimeSpan scopeTimeout,
    EnterpriseServicesInteropOption interopOption
)
public:
TransactionScope (
    Transaction^ transactionToUse, 
    TimeSpan scopeTimeout, 
    EnterpriseServicesInteropOption interopOption
)
public TransactionScope (
    Transaction transactionToUse, 
    TimeSpan scopeTimeout, 
    EnterpriseServicesInteropOption interopOption
)
public function TransactionScope (
    transactionToUse : Transaction, 
    scopeTimeout : TimeSpan, 
    interopOption : EnterpriseServicesInteropOption
)

パラメータ

transactionToUse

スコープ内で実行されるトランザクション作業でこのトランザクション使用されるように、アンビエント トランザクションとして設定するトランザクション

scopeTimeout

トランザクション スコープタイムアウトしてトランザクション中止されるまでの TimeSpan。

interopOption

関連付けられているトランザクションCOM+ トランザクションやり取りする方法を示す EnterpriseServicesInteropOption 列挙体のインスタンス

解説解説

メモ   このメソッドは、LinkDemand を使用して信頼関係のないコードからの呼び出し防ぎます。ただし、FullTrust アクセス許可セット保持する必要があるのは、直前呼び出し元だけです。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TransactionScope コンストラクタ (TransactionScopeOption, TransactionOptions, EnterpriseServicesInteropOption)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

スコープCOM+ 相互運用性要件、およびトランザクション オプション指定して、TransactionScope クラス新しインスタンス初期化します。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

Public Sub New ( _
    scopeOption As TransactionScopeOption, _
    transactionOptions As TransactionOptions, _
    interopOption As EnterpriseServicesInteropOption _
)
Dim scopeOption As TransactionScopeOption
Dim transactionOptions As TransactionOptions
Dim interopOption As EnterpriseServicesInteropOption

Dim instance As New TransactionScope(scopeOption,
 transactionOptions, interopOption)
public TransactionScope (
    TransactionScopeOption scopeOption,
    TransactionOptions transactionOptions,
    EnterpriseServicesInteropOption interopOption
)
public:
TransactionScope (
    TransactionScopeOption scopeOption, 
    TransactionOptions transactionOptions, 
    EnterpriseServicesInteropOption interopOption
)
public TransactionScope (
    TransactionScopeOption scopeOption, 
    TransactionOptions transactionOptions, 
    EnterpriseServicesInteropOption interopOption
)
public function TransactionScope (
    scopeOption : TransactionScopeOption, 
    transactionOptions : TransactionOptions, 
    interopOption : EnterpriseServicesInteropOption
)

パラメータ

scopeOption

このトランザクション スコープ関連付けられているトランザクション要件を示す TransactionScopeOption 列挙体のインスタンス

transactionOptions

新しトランザクション作成され場合使用するトランザクション オプションを示す TransactionOptions 構造体既存トランザクション使用する場合は、このパラメータタイムアウト値がトランザクション スコープ適用されます。スコープ破棄する前にその時間が経過してしまうと、トランザクション中止されます。

interopOption

関連付けられているトランザクションCOM+ トランザクションやり取りする方法を示す EnterpriseServicesInteropOption 列挙体のインスタンス

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TransactionScope コンストラクタ

TransactionScope クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

名前 説明
TransactionScope () TransactionScope クラス新しインスタンス初期化します。
TransactionScope (Transaction) TransactionScope クラス新しインスタンス初期化し指定したトランザクションアンビエント トランザクションとして設定します。これによって、スコープ内で実行されるトランザクション作業でこのトランザクション使用されます。
TransactionScope (TransactionScopeOption) 要件指定してTransactionScope クラス新しインスタンス初期化します。
TransactionScope (Transaction, TimeSpan) タイムアウト値を指定して TransactionScope クラス新しインスタンス初期化し指定したトランザクションアンビエント トランザクションとして設定します。これによって、スコープ内で実行されるトランザクション作業でこのトランザクション使用されます。
TransactionScope (TransactionScopeOption, TimeSpan) タイムアウト値と要件指定してTransactionScope クラス新しインスタンス初期化します。
TransactionScope (TransactionScopeOption, TransactionOptions) 要件指定してTransactionScope クラス新しインスタンス初期化します。
TransactionScope (Transaction, TimeSpan, EnterpriseServicesInteropOption) タイムアウト値と COM+ 相互運用性要件指定して TransactionScope クラス新しインスタンス初期化し指定したトランザクションアンビエント トランザクションとして設定します。これによって、スコープ内で実行されるトランザクション作業でこのトランザクション使用されます。
TransactionScope (TransactionScopeOption, TransactionOptions, EnterpriseServicesInteropOption) スコープCOM+ 相互運用性要件、およびトランザクション オプション指定してTransactionScope クラス新しインスタンス初期化します。
参照参照

関連項目

TransactionScope クラス
TransactionScope メンバ
System.Transactions 名前空間

その他の技術情報

トランザクション スコープ使用した暗黙的なトランザクション実装

TransactionScope メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

TransactionScope メンバ

コード ブロックトランザクションにします。このクラス継承できません。

TransactionScope データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からTransactionScopeを検索した結果を表示しています。
Weblioに収録されているすべての辞書からTransactionScopeを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からTransactionScopeを検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「TransactionScope」の関連用語

TransactionScopeのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



TransactionScopeのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS