Sudipta Saha

Sudipta Saha

  • NA
  • 85
  • 13k

how to call store procedure using Oracle.DataAccess.Client

Dec 29 2017 3:34 AM
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)