ORA-06562
type of OUT argument must match the column type or bind variable
Cause
An attempt was made to retrieve the value of a column or bind variable by calling the procedures DBMS_SQL.COLUMN_VALUE or DBMS_SQL.VARIABLE_VALUE. The type of the OUT argument was different from the column type or bind variable that the code previously defined by calling the DBMS_SQL.DEFINE_COLUMN or DBMS_SQL.BIND_VARIABLE procedure.
Action
Pass an OUT argument of the correct type when calling the procedures COLUMN_VALUE or VARIABLE_VALUE, and retry the operation.
ORA-06562
type of out argument must match type of column or bind variable
Cause
Attempting to get the value of a column or a bind variable by calling procedure COLUMN_VALUE or VARIABLE_VALUE of package DBMS_SQL but the type of the given out argument where to place the value is different from the type of the column or bind variable that was previously defined by calling procedure DEFINE_COLUMN (for defining a column) or BIND_VARIABLE (for binding a bind variable) of package DBMS_SQL.
Action
Pass in an out argument of the correct type when calling procedure COLUMN_VALUE or VARIABLE_VALUE. The right type is the type that was provided when defining the column or binding the bind variable.
ORA-06562
type of out argument must match type of column or bind variable
Cause
Attempting to get the value of a column or a bind variable by calling procedure COLUMN_VALUE or VARIABLE_VALUE of package DBMS_SQL but the type of the given out argument where to place the value is different from the type of the column or bind variable that was previously defined by calling procedure DEFINE_COLUMN (for defining a column) or BIND_VARIABLE (for binding a bind variable) of package DBMS_SQL.
Action
Pass in an out argument of the correct type when calling procedure COLUMN_VALUE or VARIABLE_VALUE. The right type is the type that was provided when defining the column or binding the bind variable.