I am getting this error when I run code:
Error Type:
ADODB.Recordset (0x800A0CB3)
Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype.
The line that the error is in is the connection string which is:
rs.Open strSql, db, adOpenDynamic
When I try to do this:
rs.Open strSql, db, adOpenDynamic, adLockOptimistic
I get this error:
Error Type:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
Please help.
Error Type:
ADODB.Recordset (0x800A0CB3)
Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype.
The line that the error is in is the connection string which is:
rs.Open strSql, db, adOpenDynamic
When I try to do this:
rs.Open strSql, db, adOpenDynamic, adLockOptimistic
I get this error:
Error Type:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
Please help.