hholzgra Wed Aug 13 03:31:58 2003 EDT
Modified files:
/phpdoc/en/reference/oci8/functions ocicommit.xml
ocidefinebyname.xml
ocifreecursor.xml ocilogon.xml
Log:
minor proto fixes and misc. small stuff
Index: phpdoc/en/reference/oci8/functions/ocicommit.xml
diff -u phpdoc/en/reference/oci8/functions/ocicommit.xml:1.9
phpdoc/en/reference/oci8/functions/ocicommit.xml:1.10
--- phpdoc/en/reference/oci8/functions/ocicommit.xml:1.9 Tue Aug 12 04:56:59
2003
+++ phpdoc/en/reference/oci8/functions/ocicommit.xml Wed Aug 13 03:31:58 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/oci8.xml, last change in rev 1.2 -->
<refentry id="function.ocicommit">
<refnamediv>
@@ -14,8 +14,7 @@
</methodsynopsis>
<para>
<function>ocicommit</function> commits all outstanding statements
- for Oracle connection <parameter>connection</parameter>.
- &return.success;
+ for the active transaction on Oracle connection
<parameter>connection</parameter>.
</para>
<para>
This example demonstrates how <function>ocicommit</function> is used.
@@ -26,7 +25,7 @@
<?php
// Login to Oracle server
$conn = OCILogon('scott', 'tiger');
-
+
// Parse SQL
$stmt = OCIParse($conn, "INSERT INTO employees (name, surname) VALUES ('Maxim',
'Maletsky')");
Index: phpdoc/en/reference/oci8/functions/ocidefinebyname.xml
diff -u phpdoc/en/reference/oci8/functions/ocidefinebyname.xml:1.6
phpdoc/en/reference/oci8/functions/ocidefinebyname.xml:1.7
--- phpdoc/en/reference/oci8/functions/ocidefinebyname.xml:1.6 Tue Aug 12 04:56:59
2003
+++ phpdoc/en/reference/oci8/functions/ocidefinebyname.xml Wed Aug 13 03:31:58
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/oci8.xml, last change in rev 1.2 -->
<refentry id="function.ocidefinebyname">
<refnamediv>
@@ -13,7 +13,7 @@
<methodsynopsis>
<type>bool</type><methodname>ocidefinebyname</methodname>
<methodparam><type>resource</type><parameter>stmt</parameter></methodparam>
- <methodparam><type>string</type><parameter>column-name</parameter></methodparam>
+ <methodparam><type>string</type><parameter>column_name</parameter></methodparam>
<methodparam><type>mixed</type><parameter>&variable</parameter></methodparam>
<methodparam
choice="opt"><type>int</type><parameter>type</parameter></methodparam>
</methodsynopsis>
@@ -22,7 +22,7 @@
of SQL-Columns. Be careful that Oracle uses ALL-UPPERCASE column-names,
whereby in your select you can also write lowercase.
<function>ocidefinebyname</function> expects
- the <parameter>column-name</parameter> to be in uppercase. If you
+ the <parameter>column_name</parameter> to be in uppercase. If you
define a variable that doesn't exists in your select statement, no
error will be given!
</para>
Index: phpdoc/en/reference/oci8/functions/ocifreecursor.xml
diff -u phpdoc/en/reference/oci8/functions/ocifreecursor.xml:1.3
phpdoc/en/reference/oci8/functions/ocifreecursor.xml:1.4
--- phpdoc/en/reference/oci8/functions/ocifreecursor.xml:1.3 Mon Feb 10 22:06:15
2003
+++ phpdoc/en/reference/oci8/functions/ocifreecursor.xml Wed Aug 13 03:31:58
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oci8.xml, last change in rev 1.11 -->
<refentry id="function.ocifreecursor">
<refnamediv>
@@ -11,8 +11,8 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ocifreecursor</methodname>
- <methodparam><type>int</type><parameter>stmt</parameter></methodparam>
+ <type>bool</type><methodname>ocifreecursor</methodname>
+ <methodparam><type>resource</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>ocifreecursor</function> frees all resources associated with the
Index: phpdoc/en/reference/oci8/functions/ocilogon.xml
diff -u phpdoc/en/reference/oci8/functions/ocilogon.xml:1.4
phpdoc/en/reference/oci8/functions/ocilogon.xml:1.5
--- phpdoc/en/reference/oci8/functions/ocilogon.xml:1.4 Tue Aug 12 04:56:59 2003
+++ phpdoc/en/reference/oci8/functions/ocilogon.xml Wed Aug 13 03:31:58 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/oci8.xml, last change in rev 1.2 -->
<refentry id="function.ocilogon">
<refnamediv>
@@ -9,7 +9,7 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>ocilogon</methodname>
+ <type>resource</type><methodname>ocilogon</methodname>
<methodparam><type>string</type><parameter>username</parameter></methodparam>
<methodparam><type>string</type><parameter>password</parameter></methodparam>
<methodparam
choice="opt"><type>string</type><parameter>db</parameter></methodparam>
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php