| 
||||||||||
| 
 | 
||||||||||
| Other Library Functions | ||||||||||
| function | OCI_ogetpi | 
  Available in:
   Sold separately  | 
| 
Library: omoci - Oracle Call Interface database support
 Include: omoci.xin  | 
Return type: Integer Returns: OCI_SUCCESS if the function completes without error.  | 
  define external integer function OCI_ogetpi
     (  value OCI_Handle_type cursor,
        modifiable integer piecep,
        modifiable stream ctxpp,
        modifiable integer iterp,
        modifiable integer indexp
     )
This function returns information about the next chunk of data to be processed as part of a piecewise insert, update, or fetch.
Input argument:
Output arguments:
Example:
   set RetCode to OCI_ogetpi
           (  Cursor,
              Piece,
              ContextValue,
              Iteration,
              Indexp
           )
| ---- |