SYS_REFCURSOR, Stored Procedures and the Entity Framework
Posted: Mon 23 Jun 2008 20:15
I have a procedure that I would like to return data through a cursor. When I try to import this using the EF Model, I get an error:
This is my procedure in Oracle
I cannot find any documenation about SP support in OraDirect. Can you give me some direction?
Thanks
Rick.
Code: Select all
Code: Select all
create or replace procedure "GetProducts" (pResultSet OUT SYS_REFCURSOR)
is
begin
OPEN pResultSet FOR SELECT * FROM PRODUCTS;
end;Thanks
Rick.