Обсуждение: is there a special function like the format on raise notice

Поиск
Список
Период
Сортировка

is there a special function like the format on raise notice

От
"jack"
Дата:
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

От
Tomasz Myrta
Дата:
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