RUN STORED-PROC statement execution without the LOAD-RESULT-INTO phrase
- Last Updated: January 17, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Syntax
To implement most data retrieval options associated with
a stored procedure, (excluding those that involve loading retrieved
data into temp-tables) you must define the RUN STORED-PROC statement
and explicitly end the stored procedure using the CLOSE
STORED-PROC statement.
You must define
the RUN STORED-PROC and explicitly complete
access to the stored procedure OUTPUT with the CLOSE
STORED-PROC syntax expressions for a stored procedure
implementation that retrieves the following types of data from the
foreign data source:
- proc-text-buffer
- user-defined views
For more information about these data retrieval options, see Data output and retrieval options.
The syntax details presented in this section describe how you to run and close a stored procedure in the Oracle data source.
This
is the syntax for the RUN STORED-PROC statement
to execute an RDBMS stored procedure without the LOAD-RESULT-INTO phrase:
|
This type of syntax expression requires the
explicit CLOSE STORED-PROC statement. This
is the partial syntax for the CLOSE STORED-PROC statement:
|