Page 1 of 1

delphi Judge whether ref cursor is null

Posted: Thu 13 Aug 2020 10:33
by ghtx001
How to determine the OUT parameter returned to null in the oracle stored procedure

CREATE OR REPLACE PROCEDURE P_YB_PRINT_INVOICE(AS_CZLX VARCHAR2, AR_HZB OUT SYS_REFCURSOR) AS
BEGIN
If AS_CZLX = '0' Then
Return;
End IF;
OPEN AR_HZB FOR
SELECT * FROM tidentity where codeno = AS_CZLX;
END;

Re: delphi Judge whether ref cursor is null

Posted: Fri 28 Aug 2020 09:06
by MaximG
Thank you for the information. We will investigate the described issue and let you know the results shortly.