Link to home
Start Free TrialLog in
Avatar of chillu
chillu

asked on

RDO Query

How to save a query using rdo technology?
Avatar of chillu
chillu

ASKER

Adjusted points from 50 to 75


Dim dbsYourDB As Database
Dim qdfTemp As QueryDef


Set dbsYourDB = OpenDatabase"Northwind.mdb")

Set qdfTemp = dbsYourDB.CreateQueryDef("NewQueryDef", "SELECT * FROM YourTable")
            
dbsYourDB.Close
Avatar of chillu

ASKER

I want to save a query using rdo not DAO object, and this query should be stored in the database for future refence.
ASKER CERTIFIED SOLUTION
Avatar of GivenRandy
GivenRandy

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial