-
I am using the DBase 4.00 ODBC driver to connect to a DBase5 table. I am using ADO. This is how I open the table.
conDbase.ConnectionString = "Data Source = DBaseSys"
conDbase.Open
recDbase.Open "Select * from TBLCUST", _
conDbase, adOpenKeyset, adLockOptimistic
When I try to make changed it tells me
[ODBC driver] Cannot Update. Database or object is read-only.
The same code works fine if I am using a Access table and ODBC driver. What the dilly-yo?
-
It can mean that you don't have permissions to update the database.Check wih the database administrator (if one exists).