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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error 80004005 unspecified errow

Status
Not open for further replies.

RakhiKalra

Programmer
Jun 6, 2003
41
IN
Hi friends,
at times i get the following error message when i run my asp file

Provider error '80004005'

Unspecified error

/amerrugs/datasource.inc, line 3


*************************************************
datasource.inc file contains the following code

<%
set con = server.createobject(&quot;adodb.connection&quot;)
con.open &quot;driver={microsoft access driver (*.mdb)};dbq=\\server\data\AmerRugs.mdb&quot;
%>


when i refresh the page for 4-5 times then this error gets removed...its totally inpredictable.
Please tell any solutions and the reason why the error is raised.



Cheers
Rakhi Kalra
 
Use the native OLEDB provider:
Con.Open &quot;Provider=Microsoft.Jet.OLEDB.4.0;&quot; & _
&quot;Data Source=\\server\data\AmerRugs.mdb;&quot; & _
&quot;User Id=admin;&quot; & _
&quot;Password=&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top