Can I call from an isCobol program a stored procedure?
Calling a stored procedure from isCOBOL is rather simple, since the supported ESQL includes the CALL statement. You should just write something like:
EXEC SQL
CALL procedure_name (:param1, :param2) into :result
END-EXEC
Where param1 and param2 and result are host variables defined in the Data Division of the program.
Authored
by: Veryant Support
This question has been viewed 5826 times so far.
Click
Here to View all the questions in Data Access
category.
File Attachments
There are no attachment file(s) related to this question.
User Comments
There are no user comments for this question. Be the first to post a comment. Click Here