Can MDAC upgrade cause ODBC driver error?
From: Ollie_Mac (OllieMac_at_discussions.microsoft.com)
Date: 09/12/04
- Next message: Barbara Garrett: ".NET ODBC Error"
- Previous message: Robert Koch: "odbc driver for excel gets no conection"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 12 Sep 2004 16:27:07 -0700
The below ASP code was written to append data to to a external Oracle database.
The server OS is Windows 2000.
It worked OK until MDAC was upgraded on the server to 2.7
This was updated by applying the latest SQL patch.
Now I get the error message...
Microsoft OLE DB Provider for ODBC Drivers error '80040e21'
ODBC driver does not support the requested properties.
at the line where rsf.open, see code below.
I am not sure if this upgrade is causing the problem.
Do you think that I need to apply a more uptodate Oracle driver?
Please Help!
Ollie.
<%
Set cmdf = Server.CreateObject("ADODB.command")
set rsf = server.createobject("ADODB.recordset")
cmdf.ActiveConnection = Application("FastOra_ConnectionString")
QSQL = "{call aoppack.getloodetails(?,{resultset 9, APPROVAL_DATE,
ACCEPT_DATE, PRIOR_CONDS_MET_DATE })}"
cmdf.CommandText = QSQL
cmdf.CommandType = adCmdText
cmdf.Parameters.Append cmdf.CreateParameter(, adInteger, adParamInput)
rsf.CursorType = adOpenStatic
rsf.LockType = adLockReadOnly
Set rsf.Source = cmdf
cmdf(0) = request.form("txtLooNumber")
rsf.open
%>
- Next message: Barbara Garrett: ".NET ODBC Error"
- Previous message: Robert Koch: "odbc driver for excel gets no conection"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|
|