Guest_imported
New member
- Jan 1, 1970
- 0
Hi,
I am trying to use a DAO to connect to an ODBC (LocalCCSys)
I do connect but when I try to execute a SQL statement I get the next run-time error
Set dbCCSys = OpenDatabase("LocalCCSys", False, _ False, "ODBC;UID=;PWD="
strSQL = "DELETE FROM CUTPLANTEMP"
dbCCSys.Execute strSQL
Run-time error '3075' Syntax error (missing operator) in query expresion 'Operation must use an updatable query'
I look for this error and it seems that the main reason is that the database was opened read-only.
I don't know how to change the database read-only property
Could anyone help me and tell how to avoid this error, please?
Thanks a lot
I am trying to use a DAO to connect to an ODBC (LocalCCSys)
I do connect but when I try to execute a SQL statement I get the next run-time error
Set dbCCSys = OpenDatabase("LocalCCSys", False, _ False, "ODBC;UID=;PWD="
strSQL = "DELETE FROM CUTPLANTEMP"
dbCCSys.Execute strSQL
Run-time error '3075' Syntax error (missing operator) in query expresion 'Operation must use an updatable query'
I look for this error and it seems that the main reason is that the database was opened read-only.
I don't know how to change the database read-only property
Could anyone help me and tell how to avoid this error, please?
Thanks a lot