Message 1 of 5
RecordSets
Not applicable
10-17-2006
12:19 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi there all,
I'm using dynamic recordsets, created at runtime of my project.
Does anybody know if I can perform SQL-statemants on them, and how...I don't use a Connection for the recordsets
I can process the recordset and do some simple sorting and so..but if I could use SQL statements it would be a lot easier.
sample of the construction of the recordsets:
Private Selection_Records As ADODB.Recordset
Set Selection_Records = New ADODB.Recordset
With Selection_Records.Fields
.Append "IdIndex", adInteger
etc....and then AddNew values...
Thanks for any help.
I'm using dynamic recordsets, created at runtime of my project.
Does anybody know if I can perform SQL-statemants on them, and how...I don't use a Connection for the recordsets
I can process the recordset and do some simple sorting and so..but if I could use SQL statements it would be a lot easier.
sample of the construction of the recordsets:
Private Selection_Records As ADODB.Recordset
Set Selection_Records = New ADODB.Recordset
With Selection_Records.Fields
.Append "IdIndex", adInteger
etc....and then AddNew values...
Thanks for any help.