トランザクションの制御 (ADO)
ADO は、Connection オブジェクトに対して BeginTrans、CommitTrans、および RollbackTrans の各メソッドを使用した接続内でのトランザクション処理をサポートしています。 ADO でのトランザクション処理の実装に関する一般的な考え方を、次の単純なコード スニペットで示します。
Const DS = "MySqlServer"
Const DB = "Northwind"
Const DP = "SQLOLEDB"
Dim oConn As ADODB.Connection
Dim oRs As ADODB.Recordset
Dim sConn As String
sConn = "Provider=" & DP & _
";Data Source=" & DS & _
";Initial Catalog=" & DB & _
";Integrated Security=SSPI;"
sSQL = "SELECT ProductID, ProductName FROM Products"
Set oConn = New ADODB.Connection
oConn.Open sConn
' Create and Open the Recordset object.
Set oRs = New ADODB.Recordset
oRs.Open sSQL, oConn, adOpenStatic, adLockOptimistic, adCmdText
If oRs.RecordCount > 1 Then
oRs.MoveFirst
Id1 = oRs("ProductID")
Name1 = oRs("ProductName")
oRs.MoveNext
Id2 = oRs("ProductID")
Name2 = oRs("ProductName")
q = "Switch ID's of " & Name1 & " and " & Name2 & "?"
If MsgBox(q, vbYesNo) = vbYes Then
oRs.MoveFirst
oRs("ProductName") = Name2
oRs.Update
oRs.MoveNext
oRs("ProductName") = Name1
oRs.Update
If MsgBox("Save changes?", vbYesNo) = vbYes Then
Else
End If
End If
End If
oRs.Close
oConn.Close
ここでは、2 つのレコードが 1 つの操作単位として更新されていることと、2 つの製品名が入れ替わっているか、まったく変更されていないかのどちらかであることを確認するために、トランザクション処理を使用します。
トランザクション処理の詳細な説明については、「データの更新と保持」を参照してください。