| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.oracle -> Re: Missing Parenthese Error: ORA-00907
Terry Coccoli wrote:
> Anyone see anything wrong with this:
>
>
> create or replace function HourParser(DayTimeValue In Integer) return
> varchar2 is
> Result varchar2(20);
> begin
> Execute Immediate
> 'SELECT CASE (WHEN :x > 1) THEN "YES" END
> FROM DUAL' Into Result Using DayTimeValue;
>
> Return(result);
> end HourParser;
>
I fixed this one. The double quotes were replaced by consecutive single quotes, and for a reason unknown to me, I had to remove the parentheses.
But I have another question now. I expanded on the above CASE statement so that I now reference :x 10 times. It seems that the USING clause has to look something like
USING DayTimeValue, DayTimeValue, DayTimeValue....,DayTimeValue (10th iteration) or else I get an 'ORA-01008:not all bind variables bound' error.
Is there any way to simplify the Using clause for a situation where I need to continually reference the bind variable ? Received on Mon Apr 05 2004 - 17:53:30 CDT
![]() |
![]() |