Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> MDAC 2.7 SP1 REFRESH and Microsoft ODBC for Oracle
The below code was written to append data to to a external Oracle
database.
The server OS is Windows 2000.
I am using the Microsoft ODBC for Oracle
When SQL Service Pack 3a was installed on the server, MDAC was
upgraded from 2.6 to 2.7 SP1 REFRESH.
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.
Please Help!
Ollie.
<%
Set cmdf =
set rsf =
cmdf.ActiveConnection =Application("FastOra_ConnectionString")
QSQL = "{call
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
%>
Received on Tue Sep 14 2004 - 06:59:30 CDT
![]() |
![]() |