From c127325911bf0bb7965a706863076d8832cf5963 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Wed, 12 Apr 2006 19:43:59 +0000 Subject: [PATCH] add new constants change the recommended constants to the proper ones git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@211269 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/oci8/constants.xml | 46 ++++++++++++++----- reference/oci8/functions/oci-bind-by-name.xml | 41 +++++++++++++---- 2 files changed, 68 insertions(+), 19 deletions(-) diff --git a/reference/oci8/constants.xml b/reference/oci8/constants.xml index 42c1c0fb81..09cde5fa32 100644 --- a/reference/oci8/constants.xml +++ b/reference/oci8/constants.xml @@ -1,5 +1,5 @@ - +
&reftitle.constants; &extension.constants; @@ -229,6 +229,39 @@ + + + SQLT_LNG + (integer) + + + + Used with oci_bind_by_name to bind LONG values. + + + + + + SQLT_LBI + (integer) + + + + Used with oci_bind_by_name to bind LONG RAW values. + + + + + + SQLT_BIN + (integer) + + + + Used with oci_bind_by_name to bind RAW values. + + + SQLT_NUM @@ -274,6 +307,7 @@ Used with oci_bind_array_by_name to bind arrays of VARCHAR2. + Also used with oci_bind_by_name. @@ -337,16 +371,6 @@ - - - SQLT_LNG - (integer) - - - - - - SQLT_ODT diff --git a/reference/oci8/functions/oci-bind-by-name.xml b/reference/oci8/functions/oci-bind-by-name.xml index 97fc701f27..a0bf05ce9c 100644 --- a/reference/oci8/functions/oci-bind-by-name.xml +++ b/reference/oci8/functions/oci-bind-by-name.xml @@ -1,5 +1,5 @@ - + oci_bind_by_name @@ -39,37 +39,62 @@ - OCI_B_FILE - for BFILEs; + SQLT_FILE - for BFILEs; - OCI_B_CFILE - for CFILEs; + SQLT_CFILE - for CFILEs; - OCI_B_CLOB - for CLOBs; + SQLT_CLOB - for CLOBs; - OCI_B_BLOB - for BLOBs; + SQLT_BLOB - for BLOBs; - OCI_B_ROWID - for ROWIDs; + SQLT_RDD - for ROWIDs; - OCI_B_NTY - for named datatypes; + SQLT_NTY - for named datatypes; - OCI_B_CURSOR - for cursors, that were created + SQLT_INT - for integers; + + + + + SQLT_CHR - for VARCHARs; + + + + + SQLT_BIN - for RAW columns; + + + + + SQLT_LNG - for LONG columns; + + + + + SQLT_LBI - for LONG RAW columns; + + + + + SQLT_RSET - for cursors, that were created before with oci_new_cursor.