diff --git a/reference/oci8/functions/ocifetchstatement.xml b/reference/oci8/functions/ocifetchstatement.xml index d2032c660a..618aef7632 100644 --- a/reference/oci8/functions/ocifetchstatement.xml +++ b/reference/oci8/functions/ocifetchstatement.xml @@ -1,5 +1,5 @@ - + @@ -12,15 +12,41 @@ intocifetchstatement resourcestmt array &variable + intskip + intmaxrows + intflags ocifetchstatement fetches all the rows from a result into a user-defined array. ocifetchstatement returns the number of rows - fetched. + fetched. skip is the number of initial rows + to ignore when fetching the result (default value of 0, to start + at the first line). maxrows is the number of + rows to read, starting at the skipth row + (Default to -1, meaning all the rows). + + + flags represents the available options for, + which can be any combinaisons of the following : + + + OCI_FETCHSTATEMENT_BY_ROW + + + OCI_FETCHSTATEMENT_BY_COLUMN (default value) + + + OCI_NUM + + + OCI_ASSOC + + + - <function>ocifetchstatement</function> example + <function>ocifetchstatement</function> example