Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Q:out paramter in a function???
hi,
I get an error messages if I try to compile the following package.
Package TEST
IS
FUNCTION function_name
( param1 IN NUMBER, param2 OUT NUMBER) RETURN BOOLEAN;
Function function_name
( param1 NUMBER,
param2 NUMBER) RETURN BOOLEAN
select 1 into param2 from dual; return TRUE;
or this error message if I replace the select line with following line:
param2 := 1;
PLS-00363: expression str cannot be used as an assignment target
thanks
samer Received on Wed Aug 18 1999 - 10:51:08 CDT
![]() |
![]() |