Advertisement

07.23.2008 at 10:26AM PDT, ID: 23589397
[x]
Attachment Details

pass a SQL statement to a function and returning the recordset to the calling procedure

Asked by TBLTMK in Access Coding/Macros, VB Database Programming, SQL Query Syntax

Tags: microsoft, access, 97

I'm using access to create a database and its been a couple of years since i've developed an application.  I want to know how to pass a SQL statement to a function that will then open the SQL statment in a recordset and return the resultant recordset to the calling procedure?  At the moment i'm defining the ADODB.Recordset at general section and re-using the same recordset for each of my routines but i use a seperate recordset for each routine.  An example of the procedure is written below in the code snippet. An explanation and code would be much appreciated Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
Option Compare Database
Option Explicit
' sets varables for the connection and recordset
Dim cn As ADODB.Connection
Dim ar As ADODB.Recordset
 
Private Sub openTable(strSQL As String)
    ' opens table define by variable passed
    Set ar = New ADODB.Recordset
    ar.Open strSQL, cn, adOpenForwardOnly, adLockOptimistic
End Sub
 
Private subroutine getDetails 
Dim strSQL as string 
strSQL = "select * from employees"
 
Call openTable(strSQL) ' Opens recordset with data
 
'rest of code goes here 
end sub
[+][-]07.23.2008 at 10:49AM PDT, ID: 22071903

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]07.23.2008 at 04:29PM PDT, ID: 22074881

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Access Coding/Macros, VB Database Programming, SQL Query Syntax
Tags: microsoft, access, 97
Sign Up Now!
Solution Provided By: Arthur_Wood
Participating Experts: 3
Solution Grade: A
 
 
[+][-]07.23.2008 at 06:54PM PDT, ID: 22075576

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]07.23.2008 at 06:55PM PDT, ID: 22075580

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.23.2008 at 07:14PM PDT, ID: 22075641

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.24.2008 at 12:01PM PDT, ID: 22082390

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.24.2008 at 06:42PM PDT, ID: 22085324

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.24.2008 at 07:56PM PDT, ID: 22085656

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.25.2008 at 02:40PM PDT, ID: 22092527

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.25.2008 at 03:59PM PDT, ID: 22092861

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628