When I try to delete a record from an ADO recordset, I get the error
"Insufficient key column information for updating or refreshing"
Prior to the delete method,
I have already filtered the recordset so that it contains only one record,
the record I want to delete.
The lines of code are:
With rst
.filter = "filter expression"
.delete
.update
.requery
end with
The error occurs when I call the .delete method.
"Insufficient key column information for updating or refreshing"
Prior to the delete method,
I have already filtered the recordset so that it contains only one record,
the record I want to delete.
The lines of code are:
With rst
.filter = "filter expression"
.delete
.update
.requery
end with
The error occurs when I call the .delete method.