DBA Data[Home] [Help]

SYS.V_LBRECSETIMPL_T dependencies on ODCICONST

Line 20: return SYS.ODCIConst.Success;

16: exit;
17: end if;
18: end loop;
19:
20: return SYS.ODCIConst.Success;
21: end ODCITablePrepare;
22:
23: static function ODCITableStart(sctx IN OUT v_lbRecSetImpl_t)
24: return number is

Line 26: return SYS.ODCIConst.Success;

22:
23: static function ODCITableStart(sctx IN OUT v_lbRecSetImpl_t)
24: return number is
25: begin
26: return SYS.ODCIConst.Success;
27: end ODCITableStart;
28:
29: -- Fetch function is not called more than once. It returns all rows when
30: -- called first time for each query because we can not have package composite

Line 209: return SYS.ODCIConst.Success;

205: if not ret then
206: self.done := 1;
207: end if;
208: end loop;
209: return SYS.ODCIConst.Success;
210: end ODCITableFetch;
211:
212: member function ODCITableClose(self IN v_lbRecSetImpl_t)
213: return number

Line 216: return SYS.ODCIConst.Success;

212: member function ODCITableClose(self IN v_lbRecSetImpl_t)
213: return number
214: is
215: begin
216: return SYS.ODCIConst.Success;
217: end ODCITableClose;
218: end;