-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Labels
Milestone
Description
I suggest a string append subprogram that silently will truncate too long strings. This is usually wanted in reporting and logging scope.
Usage example:
declare
v_str varchar2(5);
begin
for i in 1 .. 10
loop
append(v_str, 'A');
end loop;
-- the value of v_str will be 'AA...' (assuming ... is a truncated mark)
end;
/
If the idea is accepted I can create a pull request.
Reactions are currently unavailable