I'm working on a project in ASP that allows user input on the front-end, takes the users input, and inputs it into a database on the back-end. However, I'm getting errors when accessing the database. The database was created in Access 95 and is located on the server machine.
The error message I get:
Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access Driver] The Microsoft Jet database engine cannot open the file '(unknown)'. It is already opened
exclusively by another user, or you need permission to view its data.
/TroubleTicket/SubmitTroubleTicket.asp, line 4
The code associated with this error message:
<%
strConnect = "Driver={Microsoft Access Driver (*.mdb)};DBQ=C:\Inetpub\ "
set conn = server.CreateObject("ADODB.Connection"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
conn.open strConnect
%>
I've set permissions to full-control for all users and the database is not opened anywhere else.
Please advise.
The error message I get:
Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access Driver] The Microsoft Jet database engine cannot open the file '(unknown)'. It is already opened
exclusively by another user, or you need permission to view its data.
/TroubleTicket/SubmitTroubleTicket.asp, line 4
The code associated with this error message:
<%
strConnect = "Driver={Microsoft Access Driver (*.mdb)};DBQ=C:\Inetpub\ "
set conn = server.CreateObject("ADODB.Connection"
conn.open strConnect
%>
I've set permissions to full-control for all users and the database is not opened anywhere else.
Please advise.