From c091e4e2f8d24484482b2f16cf49dccb4715322a Mon Sep 17 00:00:00 2001 From: Rui Hirokawa Date: Tue, 1 Aug 2000 23:17:37 +0000 Subject: [PATCH] fixed typo. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@29473 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/oci8.xml | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/functions/oci8.xml b/functions/oci8.xml index c4ec7b8bfd..0aca44e6a6 100644 --- a/functions/oci8.xml +++ b/functions/oci8.xml @@ -667,7 +667,7 @@ Upload file: <input type="file" name="lob_upload"><br> - OCIRowCounts returns the number of rows affected + OCIRowCount returns the number of rows affected for eg update-statements. This funtions will not tell you the number of rows that a select will return! @@ -903,7 +903,7 @@ OCILogoff($conn); OCIColumnIsNULL returns true if the returned - column col in the result from the + column column in the result from the statement stmt is NULL. You can either use the column-number (1-Based) or the column-name for the col parameter. @@ -1241,7 +1241,7 @@ OCILogoff($conn); Description - mixed OCIColumnName + mixed OCIColumnType int stmt int col @@ -1306,9 +1306,10 @@ OCILogoff($conn); OCIParse parses the query - using conn. It returns true if the query is - valid, false if not. The query can be any valid - SQL statement. + using conn. It returns the statement + identity if the query is valid, false if not. The + query can be any valid SQL statement. + @@ -1323,22 +1324,31 @@ OCILogoff($conn); int OCIError - int stmt|conn + int + stmt|conn|global + - OCIError returns the last error found. If the optional - stmt|conn is not provided, the last error encountered - is returned. If no error is found, OCIError returns false. - OCIError returns the error as an associative array. In this - array, code consists the oracle error code and message - the oracle errorstring. + OCIError returns the last error found. If + the optional stmt|conn|global is not + provided, the last error encountered is returned. If no error is + found, OCIError returns + false. OCIError returns the error as an + associative array. In this array, code + consists the oracle error code and message + the oracle errorstring. + + OCIInternalDebug - Enables or disables internal debug output. By default it is disabled + + Enables or disables internal debug output. By default it is + disabled + Description