in reply to Re^2: DBI Out parameters
in thread DBI Out parameters
Just to clarify what I meant. Functions in pl/sql only allow input arguments. You cannot write:
FUNCTION fred (arg1 OUT INTEGER) RETURN integer;
but you can write
FUNCTION fred (arg1 IN INTEGER) RETURN integer;
and the IN is implied anyway.
Also, I was not saying bind_param_inout would not work on an input only parameter but it is pointless using it and may require an unnecessary overhead on input only arguments.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: DBI Out parameters
by almut (Canon) on Nov 19, 2008 at 15:05 UTC | |
by mje (Curate) on Nov 19, 2008 at 16:12 UTC |