I have a query that I want to execute against a table. With the results I want to do something. In my head the pseudo code is:

var q = "select * from table where some condition";
var results = db.getResults(q);
foreach (row r in results )
    do something with result

How would I so something similar with vba?

link|improve this question

78% accept rate
feedback

3 Answers

up vote 7 down vote accepted

DAO is native to Access and by far the best for general use. ADO has its place, but it is unlikely that this is it.

 Dim rs As DAO.Recordset
 Dim db As Database
 Dim strSQL as String

 Set db=CurrentDB

 strSQL = "select * from table where some condition"

 Set rs = db.OpenRecordset(strSQL)

 Do While Not rs.EOF

    rs.Edit
    rs!SomeField = "Abc"
    rs!OtherField = 2
    rs!ADate = Date()
    rs.Update

    rs.MoveNext
Loop
link|improve this answer
Just a comment that I also prefer DAO over ADO unless you need to run stored procedures from SQL Server or something like that. – HK1 Jan 26 '11 at 4:25
1  
Let me just say that in general, walking a recordset is not something you'll do that often to update data. There are any number of read-only scenarios where you're assembling data for use in some format (such as outputting to HTML), but updating is something that is generally best done with a SQL UPDATE command (where that's possible). – David-W-Fenton Jan 26 '11 at 23:29
feedback

I know some things have changed in AC 2010. However, the old-fashioned ADODB is, as far as I know, the best way to go in VBA. An Example:

Dim cn As ADODB.Connection
Dim cmd As ADODB.Command
Dim prm As ADODB.Parameter
Dim rs As ADODB.Recordset
Dim colReturn As New Collection

Dim SQL As String
SQL = _
    "SELECT c.ClientID, c.LastName, c.FirstName, c.MI, c.DOB, c.SSN, " & _
    "c.RaceID, c.EthnicityID, c.GenderID, c.Deleted, c.RecordDate " & _
    "FROM tblClient AS c " & _
    "WHERE c.ClientID = @ClientID"

Set cn = New ADODB.Connection
Set cmd = New ADODB.Command

With cn
    .Provider = DataConnection.MyADOProvider
    .ConnectionString = DataConnection.MyADOConnectionString
    .Open
End With

With cmd
    .CommandText = SQL
    .ActiveConnection = cn
    Set prm = .CreateParameter("@ClientID", adInteger, adParamInput, , mlngClientID)
    .Parameters.Append prm
End With

Set rs = cmd.Execute

With rs
    If Not .EOF Then
        Do Until .EOF
            mstrLastName = Nz(!LastName, "")
            mstrFirstName = Nz(!FirstName, "")
            mstrMI = Nz(!MI, "")
            mdDOB = !DOB
            mstrSSN = Nz(!SSN, "")
            mlngRaceID = Nz(!RaceID, -1)
            mlngEthnicityID = Nz(!EthnicityID, -1)
            mlngGenderID = Nz(!GenderID, -1)
            mbooDeleted = Deleted
            mdRecordDate = Nz(!RecordDate, "")

            .MoveNext
        Loop
    End If
    .Close
End With

cn.Close

Set rs = Nothing
Set cn = Nothing
link|improve this answer
If anything has changed in AC 2010 which makes the above invalid, I would love to hear about it. I have not upgraded yet from AC 2003 (don't use Access as much anymore . . .). – XIVSolutions Jan 25 '11 at 14:43
I should note here that my example is loading the results of the query into a set of variables (in horrible, pseudo-hungarian notation, no less) declared within a class module. However, one could just as easily load into an array, populate a form, what have you. – XIVSolutions Jan 25 '11 at 14:51
1  
I am not sure why you did not edit this answer instead of posting a new answer, but if the new answer is the one you want to go with, you should delete this one. – Remou Jan 25 '11 at 15:11
Ha! Because I am still learning ettiquette on here. I also felt that the first answer provided a slightly more informative view of making assignments from the recordset, while the second demonstrated iteration. Apologies . . . – XIVSolutions Jan 25 '11 at 15:51
feedback

Ahh. Because I missed the point of you initial post, here is an example which also ITERATES. The first example did not. In this case, I retreive an ADODB recordset, then load the data into a collection, which is returned by the function to client code:

EDIT: Not sure what I screwed up in pasting the code, but the formatting is a little screwball. Sorry!

Public Function StatesCollection() As Collection
Dim cn As ADODB.Connection
Dim cmd As ADODB.Command
Dim rs As ADODB.Recordset
Dim colReturn As New Collection

Set colReturn = New Collection

Dim SQL As String
SQL = _
    "SELECT tblState.State, tblState.StateName " & _
    "FROM tblState"

Set cn = New ADODB.Connection
Set cmd = New ADODB.Command

With cn
    .Provider = DataConnection.MyADOProvider
    .ConnectionString = DataConnection.MyADOConnectionString
    .Open
End With

With cmd
    .CommandText = SQL
    .ActiveConnection = cn
End With

Set rs = cmd.Execute

With rs
    If Not .EOF Then
    Do Until .EOF
        colReturn.Add Nz(!State, "")
        .MoveNext
    Loop
    End If
    .Close
End With
cn.Close

Set rs = Nothing
Set cn = Nothing

Set StatesCollection = colReturn

End Function

link|improve this answer
1  
ADO is not the most suitable thing to use with Access. There are special circumstances where it is useful, but for an ordinary recordset DAO is native and best. – Remou Jan 25 '11 at 15:10
1  
@XIVSolutions The "newer" argument for ADO is not really useful. Development of ADO has stopped in favor of ADO.Net, which Access doesn't use. However development continues for DAO. Also you dismissed a "minor" performance advantage for DAO, but DAO can be an order of magnitude faster than ADO ... which is not minor to me. – HansUp Jan 25 '11 at 17:11
2  
@XIVSolutions In this StackOverflow question, DAO took about 2 sec. vs. about a minute for ADO: stackoverflow.com/questions/2986831/… I haven't examined differences with table sources across a network, but I'm not aware of any reasons why that situation would favor ADO ... but I dunno. It's always seemed reasonable that DAO could be faster for Jet/ACE data because that's what it's designed for. – HansUp Jan 26 '11 at 3:20
1  
ADO offers flexibility in that it can accommodate other data sources, but with perhaps a performance penalty for Jet/ACE. I still use ADO sometimes, but only for stuff which DAO can't do at all or can't do as conveniently. – HansUp Jan 26 '11 at 3:22
1  
If you're not using linked tables, you're not using Access the way it was designed to be used. Microsoft has deprecated ADPs for 5 years now in favor of MDB/ACCDB with ODBC linked tables with SQL Server. That would also apply to other databases. When you say "across a network" if you mean a WAN or WiFi or Internet, then you definitely don't want a bound Access app. Indeed, I don't think you want a Jet/ACE back end at all. But even with ODBC to SQL Server with linked tables, DAO is the best interface because the ODBC connection is provided via ODBC. – David-W-Fenton Jan 29 '11 at 2:14
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.