Hello,
I want to use a password on my access database. I set the password with open exclusively.
Now in my include file I wrote this...
<%
set objConn = Server.Createobject("ADODB.Connection"
objConn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; user id=; password=***; Data source=" & Server.Mappath("..\helpdesk\db\ict.mdb"
'objConn.Mode = 3 '3 = adModeReadWrite
objConn.Open
%>
When I try to run it in IIS I got this errormessage:
--
Microsoft JET Database Engine (0x80040E4D)
Kan de toepassing niet starten. Het gegevensbestand van de werkgroep ontbreekt of is exclusief geopend door een andere gebruiker.
/ictonline/includes/openconnection.asp, line 6
--
I from Belgium so I got a dutch explanation. I try to translate...
Cannot start the application. The systemfile of the workgroup is missing or is exclusively opened bij another user.
I hope this is enough to help me with this problem.
I'm sure the database is not in use.
also my includefiles are working, cause without password it works fine.
Thanks in advance
I want to use a password on my access database. I set the password with open exclusively.
Now in my include file I wrote this...
<%
set objConn = Server.Createobject("ADODB.Connection"
objConn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; user id=; password=***; Data source=" & Server.Mappath("..\helpdesk\db\ict.mdb"
'objConn.Mode = 3 '3 = adModeReadWrite
objConn.Open
%>
When I try to run it in IIS I got this errormessage:
--
Microsoft JET Database Engine (0x80040E4D)
Kan de toepassing niet starten. Het gegevensbestand van de werkgroep ontbreekt of is exclusief geopend door een andere gebruiker.
/ictonline/includes/openconnection.asp, line 6
--
I from Belgium so I got a dutch explanation. I try to translate...
Cannot start the application. The systemfile of the workgroup is missing or is exclusively opened bij another user.
I hope this is enough to help me with this problem.
I'm sure the database is not in use.
also my includefiles are working, cause without password it works fine.
Thanks in advance