Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Help: Using ADO,C++ with Stored Procedure Resultset
> “{ ? = call sp_ListAirport }” 0x80004005 - Unspecified error
Here you are trying to use the ODBC procedure call ESCAPE to call a function (not a procedure). Either switch to using the Function call ESCAPE or switch to using an anonymous PL/SQL block like so:
“Begin select sp_ListAirport from dual; end;”
--
-cheers
DW
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Fri Feb 11 2000 - 09:34:14 CST
![]() |
![]() |