I use this strings to connect to a DNSless access file:
Set Conn = Server.Createobject("ADODB.Connection"
Conn.Connectionstring = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("/" & "database.mbd"
Conn.Open
When i try to do a INSERT/UPDATE/DELETE i always get:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
/asp/update.asp, line 50
--> [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
I am able to do a SELECT * FROM myTable with the same connection string.
Any suggestions what can be wrong?
Set Conn = Server.Createobject("ADODB.Connection"
Conn.Connectionstring = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("/" & "database.mbd"
Conn.Open
When i try to do a INSERT/UPDATE/DELETE i always get:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
/asp/update.asp, line 50
--> [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
I am able to do a SELECT * FROM myTable with the same connection string.
Any suggestions what can be wrong?