function
| Library: Oracle Call Interface database support (OMOCI legacy) Include: omoci.xin | Returns: OCI_SUCCESS if the function completes without error. | 
define external integer function OCI_oexfet
   (  value OCI_Handle_type cursor,
      value integer nrows,
      value integer cancel,
      value integer exact
   )
This function executes the SQL statement associated with a cursor, then fetches one or more rows. This function can also cancel the cursor.
Input arguments:
Example:
set RetCode to OCI_oexfet ( Cursor, 1, OCI_NOCANCEL, OCI_NOEXACT )