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

Win98 and PWS

Status
Not open for further replies.

crashc123

Technical User
Joined
Oct 3, 2001
Messages
80
Location
US
I get this error on a machine running Win98 and PWS:
Provider error '80004005'
Unspecified error
/SIE/projectlist.asp, line 14

in the following code:

<% @Language=VBScript %>
<% Option Explicit %>
<% Response.Buffer = True %>
<%
Dim strProvider
strProvider = &quot;DSN=SIEtest&quot;

Dim oRSpl
Dim strQuery
Set oRSpl= Server.CreateObject (&quot;ADODB.Recordset&quot;)
oRSpl.CursorType = 3
oRSpl.CursorLocation = 3
strQuery = &quot;SELECT * FROM projects&quot;
oRSpl.Open strQuery, strProvider
set oRSpl.ActiveConnection = Nothing
%>
.....

Now this worked on a WIN 2000 machine w/IIS 5.0 ( I don't think I have changed anything)what is the matter? If it has to do with having later versions of ASP and ADO how can I get the Newer versions ans also is it possible to put them on the Win98 machine?
 
I figured it out myself. Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top