DBA Data[Home] [Help]

APPS.OKE_UTILS dependencies on DBMS_LOB

Line 800: l_article_length := dbms_lob.getlength(l_article_text);

796: OPEN c_text;
797: FETCH c_text INTO l_article_text;
798: CLOSE c_text;
799:
800: l_article_length := dbms_lob.getlength(l_article_text);
801: l_position := p_position;
802:
803: if l_article_length >= (l_position) then
804:

Line 805: dbms_lob.read(l_article_text,l_read_length,l_position,l_append_text);

801: l_position := p_position;
802:
803: if l_article_length >= (l_position) then
804:
805: dbms_lob.read(l_article_text,l_read_length,l_position,l_append_text);
806: p_next_pos := l_position + l_read_length;
807: end if;
808:
809: return l_append_text;