Welcome to the dBforums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

If you prefer not to see double-underlined words and corresponding ads, place your cursor
here for ContentLink opt out.

Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > ASP/IIS and Progress 8.3c error

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-01-03, 10:13
maibuns maibuns is offline
Registered User
 
Join Date: May 2003
Posts: 2
ASP/IIS and Progress 8.3c error

Hi,

I am working with the following progress database sytstem.

Database type: Progress 8.3C
ODBC driver: Intersolv 3.10 32 BIT PROGRESS
Server OS: Windows 2000

I'm trying to query for information using a select statement in my ASP page, but keep getting the following error message,

Microsoft Error x80004005
Specified Driver Cannot be loaded due to system error 5
(Intersolve 3.10 32 BIT PROGRESS)

I obtain the connection string using a Microsoft UDL file (a text file), which the connection tested successfully. So...I know the OLE DB string is correct.... Here is the snippet of code in my ASP page...


<%
Dim Conn
Dim Rs
Dim strCnn
Dim strSQL

strCnn = ...the OLE DB string from UDL file...
strSQL = "SELECT * FROM table1"

Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open strCnn

Set Rs = Conn.Execute(strSQL)

....

%>

The error occurs when the code tries to open the connection to the database through the connection string. I also tried pointing to the System DSN in the ODBC setting, that also give the same error.

I did researches on Microsoft for error 80004005 which refers to the MDAC. I have updated it to most recent version 2.5 on the client's computer, so that shouldn't be the cause.

Could it also be because in the above code, I didn't set Rs varaible to server.createobject(ADODB.Connection)? I didn't need to do this for other databases...

Mainly, I wonder if the error occurs because of the ODBC driver not being compatible with IIS and ASP technology. Anyone with any solutions or guidance please help!!!!

Thanks a million!
Reply With Quote
  #2 (permalink)  
Old 05-01-03, 14:25
rhs98 rhs98 is offline
Moderator
 
Join Date: Feb 2002
Location: Hampshire, UK
Posts: 440
I searched here and these are the results.
http://dbforums.com/search.php?actio...der=descending

http://groups.google.com/groups?hl=e...ror%2 B5%2522

Sorry I can't be of more use. None of the above seemed to have anything directly like yours (though I didn't read them all). I suggest trying http://www.progress.com/support/index.htm

PS: I thought MDAC was >v2.7 now?
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On