I'm accessing an Access database and I recieve the following error when somebody else is browsing the homepage.
Microsoft JET Database Engine error '80004005'
Could not use ''; file already in use.
/parmax/Connections/Connection.asp, line 12
This happens only when someone else is trying to access the page att the same time (actually both sort of have to hammer the link and then one of the users will get the error message).
From what I've gathered using Access isn't really advisable, but still you would think that it could at least handle 2 users? The load on the site will not be great, but still I don't want to get an errormessage every time there are 2 users browsing.
So what could be the problem?
Any help would be greatly appreciated.
/Erik
Btw the code that causes the error is:
Code:
cst = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="
cst = cst & server.mappath("connections\db.mdb") & ";Persist Security Info=False"
set connection = Server.CreateObject("ADODB.Connection")
connection.open cst