I am having trouble establishing multiple connections through one database at the same time. When accessing the database at the same time users receive the following message:
Provider error '80004005'
Unspecified error
/SignIn.asp, line 11
' Create and open ADO connection object.
set cnn1 = Server.CreateObject("ADODB.Connection"
OpenStr = "driver={Microsoft Access Driver (*.mdb)};" & _
"dbq=" & Server.MapPath("database/database.mdb"
cnn1.Open OpenStr ,"",""
(Line 11 deals with cnn1.Open OpenStr ,"",""
I tried establishing multiple connections i.e cnn1, cnn2. Any assistance would be appreciated.
Provider error '80004005'
Unspecified error
/SignIn.asp, line 11
' Create and open ADO connection object.
set cnn1 = Server.CreateObject("ADODB.Connection"
OpenStr = "driver={Microsoft Access Driver (*.mdb)};" & _
"dbq=" & Server.MapPath("database/database.mdb"
cnn1.Open OpenStr ,"",""
(Line 11 deals with cnn1.Open OpenStr ,"",""
I tried establishing multiple connections i.e cnn1, cnn2. Any assistance would be appreciated.