I am trying to set up a DNS-less connection to an Access db presently residing in a fpdb folder on my website. I am running IIS on my server. Here’s the connect settings for opening the db and posting thereto:
This is ASP and the connection *seems* to be working, but the post fails with this message:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
Now that *seems* to be directing me to some kind of config in the Access db, not the ASP connection… it took me a while to get a connection string that didn’t fail, so I’m hoping I got that part right. But I am not getting much help from the MSKB on this.
The html code that is causing the break is this:
‘Response.Write Query
DBConn.BeginTrans
DBConn.Execute(Query)
A few other things to consider: the html/asp/SQL stuff was originally written to post to SQL Server. I have *not* done any ‘translating’ of SQL to Access and ported all the tables directly from SQL Server into the AccessDB. Furthermore, the db is not password-protected in any way and I went into properties on the db from Win Explorer and changed all permissions for all users to full access (changes, writes, etc.).
Any clues as to what to do next?
I thank you in advance for any help you may give!