VB 程序设计

10个成员

从DAO转换到ADO

发表于 2016-12-27 2733 次查看
Switch from DAO to ADO

By Sam Huggill

Introduction

A few days ago, I started a new project that handles a large database containing HTML code for a complete web site. The project has to allow the webmasters of the web site view all updates made to the site, when they were made and by whom. They can also edit the pages on the site, and automatically upload them.

This project requires the use of a fairly large database that needs to be accessed by many people from different PCs. I decided to use SQL Server as the back end to the project, but this meant that I couldn注释:t use DAO to connect to it! What a pain!

So, I decided it was about time I started to learn ADO. I took a quick glance around on the net at my usual VB sites, but found little or no help for me on ADO.

Well, as we pride ourselves here at VB Square on adding original content, I decided I would write an article on using ADO.

This article is only really to get you started on ADO, and only discusses the connection and recordset objects. There are many more features of ADO that you will need to look into before you take on a project using ADO.
Connecting to local and external databases

With ADO, you can build all your code around a local database and then, very easily change one line of code that will allow you to access a database on a SQL Server.

The thing that took me a while to figure out, was how to connect to a database. With DAO, you use the OpenDatabase command passing the path of the database as one of the arguements. But with ADO, you need to build a connection string. To connect to a local database, use the following connection string:

ConnectionString = "Provider=Microsoft.JET.OLEDB.3.51;Data Source=c:\mydb.mdb"

That may seem a bit cumbersome, but this flexibility provides you with the means to connect to almost any database in any format anywhere. The following connection string is used to connect to a SQL Sever database named 注释:people注释::

ConnectionString = "driver=[SQL Server];uid=admin;server=myserver;database=people"
Switch from DAO to ADO

By Sam Huggill

Using the Connection Object

The Connection object is the base from which almost all ADO functions derive from. You can use this object to carry out most of the actions performed in the sample code, using SQL statements. E.g.

mCN.Execute "DELETE FROM People WHERE ID = 1"

I won注释:t go into any detail about using SQL statements, but the MSDN has some info on them.

The connection object returns a recordset object if you use the Execute mehtod. You can use this to create a DLL and use COM to get the contents of a recordset. e.g.

Public Sub GetRecordSet() As ADODB.Recordset
GetRecordSet = mCN.Execute("SELECT * FROM People")
End Sub

This means that you can centralize all you database code into one component, preferably a DLL.

Using the Recordset Object

In ADO, the Recordset object is very similar to the DAO Recordset object. This makes things a lot easier when porting your code, although you will need to devise a few workarounds to overcome a few missing features.

For example, when you insert a record, but need to store its ID (AutoNumber) value in the same action, you would normally use this code in DAO:

With rs
.AddNew
.Fields("Name").value = sNewValue
.Update
.Bookmark = .Lastmodified
m_intRcdID = .Fields("ID").value
.Close
End With
The ADO Recordset object does not expose a LastModified or LastUpdated property, so we need to use the following workaround:

With rs
.AddNew
.Fields("Name").value = sNewValue
.Update
.Requery
.MoveLast
m_intRcdID = .Fields("ID").value
.Close
End With

After updating the recordset (which you don注释:t need to do if you are moving to another record, as ADO automatically updates changes made when you move records) you need to refresh the recordset using the Requery method. Then you need to move to the last record, which is the one you have just added. Now, just extract the ID value and store it in a member variable.
Sample Application

To help you move from DAO to ADO, I have made a similar sample application as I did for the Beginning Databases article. The sample offers these features:

Adding new records
Deleting records
Updating records
Getting record data
It is a very simple demo, but should help you to understand the basics. It use the latest version of ADO, version 2.1. See the section at the bottom for downloading the ADO Libraries and the sample applcation.

To get the sample application to work, start a new Standard EXE Project and add a reference to the Microsoft ActiveX Data Objects 2.1 Library (Project, References). Add four command buttons (cmdAdd, cmdDelete, cmdGet, cmdSave) and three text boxes (txtNotes, txtURL, txtName). Copy/paste the following code into the form:

Option Explicit

注释: Private references to the ADO 2.1 Object Library
Private mCN As Connection
Private mRS As New Recordset

注释: Internal reference to the current records ID value
Private mintRcdID As Integer

Private Sub cmdAbout_Click()
frmAbout.Show vbModal
End Sub

Private Sub cmdAdd_Click()
AddRecord
End Sub

Private Sub cmdClose_Click()
Unload Me
End Sub

Private Sub OpenConnection(strPath As String)

注释: Close an open connection
If Not (mCN Is Nothing) Then
mCN.Close
Set mCN = Nothing
End If


注释: Create a new connection
Set mCN = New Connection

With mCN
注释: To connect to a SQL Server, use the following line:

注释: .ConnectionString="driver=[SQL Server];uid=admin;server=mysrv;database=site"

注释: For this example, we will be connecting to a local database
.ConnectionString = "Provider=Microsoft.JET.OLEDB.3.51;Data Source=" & strPath

.CursorLocation = adUseClient
.Open

End With

End Sub

Private Sub AddRecord()


注释: Add a new record using the recordset object
注释: Could be done using the connection object
mRS.Open "SELECT * FROM People", mCN, adOpenKeyset, adLockOptimistic

With mRS

.AddNew
.Fields("Name").Value = txtName.Text
.Fields("URL").Value = txtURL.Text
.Fields("Notes").Value = txtNotes.Text

注释: After updating the recordset, we need to refresh it, and then move to the
注释: end to get the newest record. We can then retrieve the new record注释:s id
.Update
.Requery
.MoveLast

mintRcdID = .Fields("ID").Value

.Close

End With

End Sub

Private Sub DeleteRecord()

注释: Delete a record and clear the textboxes

mRS.Open "SELECT * FROM People WHERE ID =" & mintRcdID, mCN, adOpenKeyset, adLockOptimistic

mRS.Delete
mRS.Close

txtName.Text = ""
txtURL.Text = ""
txtNotes.Text = ""

End Sub

Private Sub GetInfo()

注释: Get the data for a record based on its ID value
mRS.Open "SELECT * FROM People WHERE ID =" &
mintRcdID, mCN, adOpenKeyset, adLockOptimistic

With mRS

txtName.Text = .Fields("Name").Value
txtURL.Text = .Fields("URL").Value
txtNotes.Text = .Fields("Notes").Value
.Close

End With

End Sub

Private Sub UpdateRecord()

注释: Update a record注释:s values
mRS.Open "SELECT * FROM People WHERE ID =" & mintRcdID, mCN, adOpenKeyset, adLockOptimistic

With mRS

.Fields("Name").Value = txtName.Text
.Fields("URL").Value = txtURL.Text
.Fields("Notes").Value = txtNotes.Text

.Update
.Close

End With

End Sub

Private Sub cmdDelete_Click()
DeleteRecord
End Sub

Private Sub cmdGet_Click()

注释: Ask the user which record should be retrieved and get the data
注释: for that record
mintRcdID = Val(InputBox$("Enter ID of record:", App.Title, "1"))

GetInfo

End Sub

Private Sub cmdSave_Click()
UpdateRecord
End Sub

Private Sub Form_Load()

OpenConnection App.Path & "\people.mdb"

End Sub

Private Sub Form_Unload(Cancel As Integer)

If Not (mRS Is Nothing) Then
Set mRS = Nothing
End If

If Not (mCN Is Nothing) Then
mCN.Close
Set mCN = Nothing
End If

End Sub

 

发表回复
你还没有登录,请先登录注册