Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ODBC Connection Errors 1

Status
Not open for further replies.

trevord

Programmer
Jun 7, 2001
1
US
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.



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top