SqlTransaction クラス
SQL Server データベースで作成する Transact-SQL トランザクションを表します。このクラスは継承できません。
この型のすべてのメンバの一覧については、SqlTransaction メンバ を参照してください。
System.Object
System.MarshalByRefObject
System.Data.SqlClient.SqlTransaction
NotInheritable Public Class SqlTransaction
Inherits MarshalByRefObject
Implements IDbTransaction, IDisposable
[C#]
public sealed class SqlTransaction : MarshalByRefObject,
IDbTransaction, IDisposable
[C++]
public __gc __sealed class SqlTransaction : public
MarshalByRefObject, IDbTransaction, IDisposable
[JScript]
public class SqlTransaction extends MarshalByRefObject implements
IDbTransaction, IDisposable
スレッドセーフ
この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。
解説
アプリケーションは、 SqlConnection オブジェクトに対して BeginTransaction を呼び出すことによって、 SqlTransaction オブジェクトを作成します。トランザクションに関連付けられた後続の処理 (トランザクションのコミット、中止など) はすべて、 SqlTransaction オブジェクトに対して実行します。
使用例
[Visual Basic, C#, C++] SqlConnection および SqlTransaction を作成する例を次に示します。 BeginTransaction 、 Commit 、 Rollback の各メソッドの使い方も示します。
Public Sub RunSqlTransaction(myConnString As String)
Dim myConnection As New SqlConnection(myConnString)
myConnection.Open()
Dim myCommand As SqlCommand = myConnection.CreateCommand()
Dim myTrans As SqlTransaction
' Start a local transaction
myTrans = myConnection.BeginTransaction()
' Must assign both transaction object and connection
' to Command object for a pending local transaction
myCommand.Connection = myConnection
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 SqlException
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 'RunSqlTransaction
[C#]
public void RunSqlTransaction(string myConnString)
{
SqlConnection myConnection = new SqlConnection(myConnString);
myConnection.Open();
SqlCommand myCommand = myConnection.CreateCommand();
SqlTransaction myTrans;
// Start a local transaction
myTrans = myConnection.BeginTransaction();
// Must assign both transaction object and connection
// to Command object for a pending local transaction
myCommand.Connection = myConnection;
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 (SqlException 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 RunSqlTransaction(String* myConnString)
{
SqlConnection* myConnection = new SqlConnection(myConnString);
myConnection->Open();
SqlCommand* myCommand = myConnection->CreateCommand();
SqlTransaction* myTrans;
// Start a local transaction
myTrans = myConnection->BeginTransaction();
// Must assign both transaction object and connection
// to Command object for a pending local transaction
myCommand->Connection = myConnection;
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 (SqlException* 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.");
}
__finally
{
myConnection->Close();
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
名前空間: System.Data.SqlClient
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
アセンブリ: System.Data (System.Data.dll 内)
参照
SqlTransaction メンバ | System.Data.SqlClient 名前空間 | SqlDataAdapter | SqlConnection