data type
Library: Database access (OMDB)
Import : omdb.xmd |
The db.procedure opaque data type is a link that allows you to access a stored procedure in a database.
To create a db.procedure, use db.open-procedure
. The resulting data type is a link to the stored procedure. To execute the stored procedure, call the db.execute
function. When you have finished using the procedure, use db.close
to release the resources used by the db.procedure data type.
Please refer to Opaque Data Types for a general description of opaque data types and how they are used.
The functions
db.open-procedure
- establish a link to a stored procedure in a database.
db.close
- close the connection to a stored procedure and release its resources.
db.execute
- execute a stored procedure.