Thread: is there a special function like the format on raise notice

is there a special function like the format on raise notice

From
"jack"
Date:
Hi, all

With pl/sql, is there a special function such as

s1 := function(''invalid code: %'',iErrCode);

s1 becomes ''invalid code: 120''

Thank you

Jack



Re: is there a special function like the format on raise notice

From
Tomasz Myrta
Date:
Uz.ytkownik jack napisa?:
> Hi, all
>
> With pl/sql, is there a special function such as
>
> s1 := function(''invalid code: %'',iErrCode);
>
> s1 becomes ''invalid code: 120''
>
> Thank you
s1:=''invalid code: '' || iErrCode;

Tomasz