From b7ce9ec6af12914bcd752aad7c9cfa180d606cae Mon Sep 17 00:00:00 2001 From: Damien Seguy Date: Fri, 9 May 2003 01:27:44 +0000 Subject: [PATCH] Updating prototype from doc git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@126320 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../oci8/functions/ocifetchstatement.xml | 32 +++++++++++++++++-- 1 file changed, 29 insertions(+), 3 deletions(-) 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