PROC-STATUS function
- Last Updated: January 18, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Returns the return status from a stored procedure. The return status is an INTEGER value that indicates whether a stored procedure failed and why.
Syntax
|
Example
This procedure runs the ORACLE stored procedure pcust and writes the
results of the stored procedure into the ABL-supplied buffer, proc-text-buffer. The CLOSE
STORED-PROCEDURE statement then retrieves the output parameters. The return status is
written to the variable iStat and is displayed. This same
code works for accessing a stored procedure from an Microsoft SQL Server-compliant data
source:
|
Notes
- For descriptions of the possible values for the return status of a non-ABL stored procedure, see the procedure's documentation.
- For more information on using this function, see the OpenEdge DataServer Guides (Use the Microsoft SQL Data Server and Use the Oracle Data Server).
See also
CLOSE STORED-PROCEDURE statement, PROC-HANDLE function, RUN STORED-PROCEDURE statement