Save 和 Open 方法示例 (VB)
这三个示例演示了 Save 和 Open 方法如何一起使用。
假设你要出差,并想带上数据库中的一张表。 在开始之前,你可以按 Recordset 的形式访问数据并将其保存为可传输形式。 到达目的地时,你可以将 Recordset 作为本地断开连接的 Recordset 进行访问。 对 Recordset 进行更改,然后再次保存。 最后,当你回到家时,你再次连接到数据库并使用你在路上所做的更改对其进行更新。
首先,访问并保存 Authors(作者)表。
'BeginSaveVB
'To integrate this code
'replace the data source and initial catalog values
'in the connection string
Public Sub Main()
On Error GoTo ErrorHandler
'recordset and connection variables
Dim rstAuthors As ADODB.Recordset
Dim Cnxn As ADODB.Connection
Dim strCnxn As String
Dim strSQLAuthors As String
' Open connection
Set Cnxn = New ADODB.Connection
strCnxn = "Provider='sqloledb';Data Source='MySqlServer';" & _
"Initial Catalog='Pubs';Integrated Security='SSPI';"
Cnxn.Open strCnxn
Set rstAuthors = New ADODB.Recordset
strSQLAuthors = "SELECT au_id, au_lname, au_fname, city, phone FROM Authors"
rstAuthors.Open strSQLAuthors, Cnxn, adOpenDynamic, adLockOptimistic, adCmdText
'For sake of illustration, save the Recordset to a diskette in XML format
rstAuthors.Save "c:\Pubs.xml", adPersistXML
' clean up
rstAuthors.Close
Cnxn.Close
Set rstAuthors = Nothing
Set Cnxn = Nothing
Exit Sub
ErrorHandler:
'clean up
If Not rstAuthors Is Nothing Then
If rstAuthors.State = adStateOpen Then rstAuthors.Close
End If
Set rstAuthors = Nothing
If Not Cnxn Is Nothing Then
If Cnxn.State = adStateOpen Then Cnxn.Close
End If
Set Cnxn = Nothing
If Err <> 0 Then
MsgBox Err.Source & "-->" & Err.Description, , "Error"
End If
End Sub
'EndSaveVB
此时,你已到达目的地。 你将 Authors 表作为本地、已断开连接的 Recordset 进行访问。 必须在使用的计算机上具有 MSPersist 提供程序才能访问保存的文件:a:\Pubs.xml。
Attribute VB_Name = "Save"
最后,你返回家中。 现在,可以用进行的更改来更新数据库。
Attribute VB_Name = "Save"