DEFINE_COLUMN_RAW procedure - Define a RAW column or expression in the SELECT list

The DEFINE_COLUMN_RAW procedure defines a RAW column or expression in the SELECT list that is to be returned and retrieved in a cursor.

Syntax

Read syntax diagramSkip visual syntax diagramDBMS_SQL.DEFINE_COLUMN_RAW( c,position,column ,column_size)

Parameters

c
An input argument of type INTEGER that specifies the cursor handle associated with the SELECT command.
position
An input argument of type INTEGER that specifies the position of the column or expression in the SELECT list that is being defined.
column
An input argument of type BLOB(32767).
column_size
An input argument of type INTEGER that specifies the maximum length of the returned data. Returned data exceeding column_size is truncated to column_size characters.

Authorization

EXECUTE privilege on the DBMS_SQL module.