ORA-01008: not all variables bound

Ivan C.

Member³
Greetings!

I'm getting the error while trying to debug a packaged procedure that uses

Code:
OPEN cursor_variable
 FOR sql_string
 USING variable_name_1
     , variable_name_2
     , variable_name_3;
sql_string contains a SELECT statement with 3 bind variables (preceded with a semi column) in it.

Any ideas how to go around this problem/bug?

Thank you in advance.
IC
 
Back
Top