DBA Data[Home] [Help]

APPS.WF_MONITOR dependencies on DBMS_LOB

Line 65: dbms_lob.createTemporary(gClob, true, dbms_lob.session);

61: is
62: begin
63: if (gUseClob) then
64: if NOT (gClobInit) then
65: dbms_lob.createTemporary(gClob, true, dbms_lob.session);
66: dbms_lob.open(gClob, dbms_lob.lob_readwrite);
67: gClobInit := true;
68: end if;
69: if (newData is not null) then

Line 66: dbms_lob.open(gClob, dbms_lob.lob_readwrite);

62: begin
63: if (gUseClob) then
64: if NOT (gClobInit) then
65: dbms_lob.createTemporary(gClob, true, dbms_lob.session);
66: dbms_lob.open(gClob, dbms_lob.lob_readwrite);
67: gClobInit := true;
68: end if;
69: if (newData is not null) then
70: dbms_lob.writeAppend(gClob, length(newData), newData);

Line 70: dbms_lob.writeAppend(gClob, length(newData), newData);

66: dbms_lob.open(gClob, dbms_lob.lob_readwrite);
67: gClobInit := true;
68: end if;
69: if (newData is not null) then
70: dbms_lob.writeAppend(gClob, length(newData), newData);
71: end if;
72: end if;
73: end;
74: