cucinato                Sat Dec 15 16:24:54 2001 EDT

  Modified files:              
    /phpdoc/it/functions        oci8.xml 
  Log:
  Updated to EN rev 1.39
  
  
Index: phpdoc/it/functions/oci8.xml
diff -u phpdoc/it/functions/oci8.xml:1.20 phpdoc/it/functions/oci8.xml:1.21
--- phpdoc/it/functions/oci8.xml:1.20   Wed Dec 12 15:51:56 2001
+++ phpdoc/it/functions/oci8.xml        Sat Dec 15 16:24:54 2001
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
- <!-- EN-Revision: 1.36 Maintainer: cucinato Status: ready -->
+ <!-- EN-Revision: 1.39 Maintainer: cucinato Status: ready -->
 <reference id="ref.oci8">
   <title>Funzioni Oracle 8</title>
   <titleabbrev>OCI8</titleabbrev>
@@ -283,13 +283,13 @@
 
 $rowid = OCINewDescriptor($conn,OCI_D_ROWID);
 
-OCIBindByName($stmt,":empno",&amp;$empno,32);
-OCIBindByName($stmt,":ename",&amp;$ename,32);
-OCIBindByName($stmt,":rid",&amp;$rowid,-1,OCI_B_ROWID);
+OCIBindByName($stmt,":empno",&$empno,32);
+OCIBindByName($stmt,":ename",&$ename,32);
+OCIBindByName($stmt,":rid",&$rowid,-1,OCI_B_ROWID);
 
 $update = OCIParse($conn,"update emp set sal = :sal where ROWID = :rid");
-OCIBindByName($update,":rid",&amp;$rowid,-1,OCI_B_ROWID);
-OCIBindByName($update,":sal",&amp;$sal,32);
+OCIBindByName($update,":rid",&$rowid,-1,OCI_B_ROWID);
+OCIBindByName($update,":sal",&$sal,32);
 
 $sal = 10000;
 
@@ -305,7 +305,7 @@
 
 $stmt = OCIParse($conn,"select * from emp where empno in (1111,2222,3333)");
 OCIExecute($stmt);
-while (OCIFetchInto($stmt,&amp;$arr,OCI_ASSOC)) {
+while (OCIFetchInto($stmt,&$arr,OCI_ASSOC)) {
        var_dump($arr);
 }
 OCIFreeStatement($stmt);
@@ -1871,6 +1871,26 @@
    </refsect1>
   </refentry>
 
+  <refentry id="function.ocicollappend">
+   <refnamediv>
+    <refname>OCICollAppend</refname>
+    <refpurpose>Coming soon.</refpurpose>
+   </refnamediv>
+   <refsect1>
+    <title>Descrizione</title>
+    <funcsynopsis>
+     <funcprototype>
+      <funcdef>string <function>OCICollAppend</function></funcdef>
+      <paramdef>object <parameter>collection</parameter></paramdef>
+      <paramdef>object <parameter>object</parameter></paramdef>
+     </funcprototype>
+    </funcsynopsis>
+    <simpara>
+     Coming soon.
+    </simpara>
+   </refsect1>
+  </refentry>
+  
   <refentry id="function.ocicollassignelem">
    <refnamediv>
     <refname>OCICollAssignElem</refname>


Reply via email to