COLUMN_VALUE v14
The COLUMN_VALUE
procedure defines a variable to receive a value from a cursor.
Parameters
c
Cursor id of the cursor returning data to the variable being defined.
position
Position of the returned data in the cursor. The first value in the cursor is position 1.
value
Variable receiving the data returned in the cursor by a prior fetch call.
column_error
Error number associated with the column, if any.
actual_length
Actual length of the data prior to any truncation.
Examples
This example shows the portion of an anonymous block that receives the values from a cursor using the COLUMN_VALUE
procedure.
- On this page
- Parameters
- Examples