| 
||||||||||
| 
 | 
||||||||||
| Other Library Functions | ||||||||||
| function | OCI_osetpi | 
  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_osetpi
     (  value OCI_Handle_type cursor,
        value integer piece,
        value OCI_Array_type bufp,
        value OCI_Array_type lenp
     )
This function sets information about the next chunk of data to be processed as part of a piecewise insert, update, or fetch.
Input arguments:
Example:
  set RetCode to OCI_osetpi
           (  Cursor,
              Piece,
              NextChunk,
              ChunkSize
           )
| ---- |