Hi all,
I am having trouble with DAO (VB6) reading an Access database. I keep getting a "read-only" recordset instead of Updatable one.
the help file suggests that the Jet engine can't create an editable recordset, but I don't know where to look for the error.
This code works in other parts of the application (different table).
I have tried recreating the table in Access and copying the data into that, to no avail.
Any help would be welcome
thanks
I am having trouble with DAO (VB6) reading an Access database. I keep getting a "read-only" recordset instead of Updatable one.
Code:
Set qdfLocal = dbsCurrent.OpenRecordset(myQuery, dbOpenDynaset)
This code works in other parts of the application (different table).
I have tried recreating the table in Access and copying the data into that, to no avail.
Any help would be welcome
thanks
Comment