minor proto fixes and misc. small stuff

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@137589 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Hartmut Holzgraefe 2003-08-13 07:31:58 +00:00
parent ceacf64f8d
commit 33675d7acf
4 changed files with 11 additions and 12 deletions

View file

@ -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')");

View file

@ -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>&amp;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>

View file

@ -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

View file

@ -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>