|
-
Feb 9th, 2003, 11:17 AM
#1
Thread Starter
Addicted Member
Working with Recordsets
Is there a way of dynamically creating full featured recordsets. For example, if I use the ADODC control, I can use Recordcount, AddItem, Update, etc. However, if I create a dynamic recordset on the fly such as
public sqlTest as string
public rstTest as New ADODB Recordset
sqlTest = "Select * from test"
rstTest.Open sqlTest, strFile, adOpenDynamic
rstTest.AddNew
This gives me very limited capabilities. The AddNew isn't available
Is it that I have an "old" version of the control or is there something else I need.
Thanking you in advance for your help
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
|