rockman
Senior Member
- Local time
- Today, 13:19
- Joined
- May 29, 2002
- Messages
- 190
Is there a way to apply SQL statements to a recordset?
For example:
I understand the example above can be accomplished all in the OpenRecordset method but what I'm trying to get across is how can I manipulate an already created recordset with SQL.
Thanks for any thoughts,
Jeff
For example:
Code:
Dim rsOne as ADODB.recordset
rsOne.OpenRecord("SELECT * FROM tblEmployees")
doCmd.RunSQL "DELETE rsOne WHERE fldName = 'Jones'"
Thanks for any thoughts,
Jeff