Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_database_setup thread: Re: Error Type:Provider (0x80004005)Unspecified error


Message #1 by "Maher" <maher_uae@h...> on Tue, 14 Jan 2003 13:30:12
hi,
am facing this problem now,did you find any solution,your help is very 
much appreciated.
regards,
maher
> Hi,
> 
> I have created some asp pages which access or submit data to Access 
> Database,
> 
> The connection is as follows
> 
> <%
> dim mysql
> set con=server.CreateObject ("adodb.Connection")
> con.Open "DRIVER={microsoft access driver 
> (*.mdb)};DBQ=e:\reports\OrderTracking.mdb"
>  mysql="select Customer_Name from Customer order by Customer_Name "
>  set rs =server.CreateObject ("adodb.Recordset")
>  rs.Open mysql,con
> %>
> 
> Now problem is The page works fine For first time, but when I go back 
and 
> click for the same page it Gives me,
> 
> "Error Type:Provider (0x80004005)Unspecified error"
> 
> pls help me .
Message #2 by "Shawn Clabough" <shawnc@u...> on Wed, 15 Jan 2003 00:36:04
This issue can result when user id and password parameters are not 
provided. This can occur even though no user id or password is needed.  
You might also try using Jet instead
 strConn =  "Provider=Microsoft.Jet.OLEDB.4.0;Data 
Source=e:\reports\OrderTracking.mdb;User Id=admin;Password="

> hi,
a> m facing this problem now,did you find any solution,your help is very 
m> uch appreciated.
r> egards,
m> aher
>>  Hi,
>>  
>>  I have created some asp pages which access or submit data to Access 
>>  Database,
>>  
>>  The connection is as follows
>>  
>>  <%
>>  dim mysql
>>  set con=server.CreateObject ("adodb.Connection")
>>  con.Open "DRIVER={microsoft access driver 
>>  (*.mdb)};DBQ=e:\reports\OrderTracking.mdb"
>>   mysql="select Customer_Name from Customer order by Customer_Name "
>>   set rs =server.CreateObject ("adodb.Recordset")
>>   rs.Open mysql,con
>>  %>
>>  
>>  Now problem is The page works fine For first time, but when I go back 
a> nd 
>>  click for the same page it Gives me,
>>  
>>  "Error Type:Provider (0x80004005)Unspecified error"
>>  
>>  pls help me .

  Return to Index