|
-
Oct 13th, 2003, 10:44 AM
#1
SQL on In-Memory Recordsets [resolved]
I have some in-memory only ADO recordsets in VB6 and I am wondering if it is possible to Execute SQL against this data. The recordsets were created on the fly, so there is no source database to execute the code against.
What I am trying to do is run commands like the ones below against the recordset
"Select * From <this recordset> where ID=75"
"Select Distinct(ID) From <ThisRecordset>"
Thanks for your help,
Last edited by Negative0; Oct 13th, 2003 at 01:16 PM.
-
Oct 13th, 2003, 10:48 AM
#2
You cannot execute sql queries against a recordset. Use the different properties that are available - Filter, Find, Seek
-
Oct 13th, 2003, 11:15 AM
#3
Originally posted by brucevde
You cannot execute sql queries against a recordset. Use the different properties that are available - Filter, Find, Seek
I second that.... it would be nice if you could do that..... but, alas, it is not possible.
TG
-
Oct 13th, 2003, 01:17 PM
#4
Thanks guys...
I'll just use the filter and approach the problem from a different angle.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|