mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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
This commit is contained in:
parent
354ac6585b
commit
c127325911
2 changed files with 68 additions and 19 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<section id="oci8.constants">
|
||||
&reftitle.constants;
|
||||
&extension.constants;
|
||||
|
@ -229,6 +229,39 @@
|
|||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>SQLT_LNG</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Used with <function>oci_bind_by_name</function> to bind LONG values.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>SQLT_LBI</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Used with <function>oci_bind_by_name</function> to bind LONG RAW values.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>SQLT_BIN</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Used with <function>oci_bind_by_name</function> to bind RAW values.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>SQLT_NUM</constant>
|
||||
|
@ -274,6 +307,7 @@
|
|||
<simpara>
|
||||
Used with <function>oci_bind_array_by_name</function> to bind arrays of
|
||||
VARCHAR2.
|
||||
Also used with <function>oci_bind_by_name</function>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -337,16 +371,6 @@
|
|||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>SQLT_LNG</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>SQLT_ODT</constant>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<refentry id="function.oci-bind-by-name">
|
||||
<refnamediv>
|
||||
<refname>oci_bind_by_name</refname>
|
||||
|
@ -39,37 +39,62 @@
|
|||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>OCI_B_FILE</constant> - for BFILEs;
|
||||
<constant>SQLT_FILE</constant> - for BFILEs;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>OCI_B_CFILE</constant> - for CFILEs;
|
||||
<constant>SQLT_CFILE</constant> - for CFILEs;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>OCI_B_CLOB</constant> - for CLOBs;
|
||||
<constant>SQLT_CLOB</constant> - for CLOBs;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>OCI_B_BLOB</constant> - for BLOBs;
|
||||
<constant>SQLT_BLOB</constant> - for BLOBs;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>OCI_B_ROWID</constant> - for ROWIDs;
|
||||
<constant>SQLT_RDD</constant> - for ROWIDs;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>OCI_B_NTY</constant> - for named datatypes;
|
||||
<constant>SQLT_NTY</constant> - for named datatypes;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>OCI_B_CURSOR</constant> - for cursors, that were created
|
||||
<constant>SQLT_INT</constant> - for integers;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>SQLT_CHR</constant> - for VARCHARs;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>SQLT_BIN</constant> - for RAW columns;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>SQLT_LNG</constant> - for LONG columns;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>SQLT_LBI</constant> - for LONG RAW columns;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<constant>SQLT_RSET</constant> - for cursors, that were created
|
||||
before with <function>oci_new_cursor</function>.
|
||||
</para>
|
||||
</listitem>
|
||||
|
|
Loading…
Reference in a new issue