2
Answers

how to call store procedure using Oracle.DataAccess.Client

Sudipta Saha

Sudipta Saha

7y
630
1
i have a store procedure like this :
PROCEDURE PRC_ABCD_GETALL (resultset_out OUT TYPES.cursorType)
AS
BEGIN
OPEN resultset_out FOR SELECT * FROM ABCD;
END PRC_ABCD_GETALL 
 
can anybody help me regarding this?
Answers (2)