控制交易 (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
此處的交易處理可用來確保兩筆記錄更新時會視為一個作業單位,而且兩個產品名稱會交換或完全不變。
如需交易處理的詳細討論內容,請參閱更新和保存資料。