sean Wed Nov 10 14:11:02 2004 EDT
Modified files:
/phpdoc/en/reference/pdo/functions pdo-beginTransaction.xml
pdo-commit.xml pdo-execute.xml
pdo-fetch.xml pdo-prepare.xml
pdo.xml
Log:
updated <function>...</function> references for PDO::*
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo/functions/pdo-beginTransaction.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/pdo/functions/pdo-beginTransaction.xml
diff -u phpdoc/en/reference/pdo/functions/pdo-beginTransaction.xml:1.4
phpdoc/en/reference/pdo/functions/pdo-beginTransaction.xml:1.5
--- phpdoc/en/reference/pdo/functions/pdo-beginTransaction.xml:1.4 Wed Nov
10 13:51:28 2004
+++ phpdoc/en/reference/pdo/functions/pdo-beginTransaction.xml Wed Nov 10
14:10:57 2004
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<refentry id='function.pdo-beginTransaction'>
<refnamediv>
<refname>PDO::beginTransaction</refname>
@@ -13,8 +13,8 @@
</methodsynopsis>
&warn.experimental.func;
<para>
- Turns off autocommit mode. Call <function>commit</function> or
- <function>rollback</function> to end the transaction and return to
+ Turns off autocommit mode. Call <function>PDO::commit</function> or
+ <function>PDO::rollback</function> to end the transaction and return to
autocommit mode.
</para>
</refsect1>
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo/functions/pdo-commit.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/pdo/functions/pdo-commit.xml
diff -u phpdoc/en/reference/pdo/functions/pdo-commit.xml:1.4
phpdoc/en/reference/pdo/functions/pdo-commit.xml:1.5
--- phpdoc/en/reference/pdo/functions/pdo-commit.xml:1.4 Wed Nov 10
13:51:28 2004
+++ phpdoc/en/reference/pdo/functions/pdo-commit.xml Wed Nov 10 14:10:57 2004
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<refentry id='function.pdo-commit'>
<refnamediv>
<refname>PDO::commit</refname>
@@ -14,7 +14,7 @@
&warn.experimental.func;
<para>
Commits a transaction, returning the database connection to autocommit
- mode until the next call to <function>beginTransaction</function>
+ mode until the next call to <function>PDO::beginTransaction</function>
starts a new transaction.
</para>
</refsect1>
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo/functions/pdo-execute.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/pdo/functions/pdo-execute.xml
diff -u phpdoc/en/reference/pdo/functions/pdo-execute.xml:1.4
phpdoc/en/reference/pdo/functions/pdo-execute.xml:1.5
--- phpdoc/en/reference/pdo/functions/pdo-execute.xml:1.4 Wed Nov 10
13:51:28 2004
+++ phpdoc/en/reference/pdo/functions/pdo-execute.xml Wed Nov 10 14:10:58 2004
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<refentry id='function.pdo-execute'>
<refnamediv>
<refname>PDO::execute</refname>
@@ -16,7 +16,7 @@
Execute the prepared statement. If the prepared statement included
parameter markers, you must either:
<itemizedlist>
- <listitem><para>call <function>bindParam</function> to bind PHP variables
+ <listitem><para>call <function>PDO::bindParam</function> to bind PHP
variables
to the parameter markers: bound variables pass their value as input and
receive the
output value, if any, of their associated parameter
markers</para></listitem>
<listitem><para>or pass an array of parameter values</para></listitem>
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo/functions/pdo-fetch.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/pdo/functions/pdo-fetch.xml
diff -u phpdoc/en/reference/pdo/functions/pdo-fetch.xml:1.4
phpdoc/en/reference/pdo/functions/pdo-fetch.xml:1.5
--- phpdoc/en/reference/pdo/functions/pdo-fetch.xml:1.4 Wed Nov 10 13:51:28 2004
+++ phpdoc/en/reference/pdo/functions/pdo-fetch.xml Wed Nov 10 14:10:58 2004
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<refentry id='function.pdo-fetch'>
<refnamediv>
<refname>PDO::fetch</refname>
@@ -43,7 +43,7 @@
<listitem><para>
<literal>PDO_FETCH_BOUND</literal>: returns &true; and assigns the
values of the columns in your result set to the PHP variables to which
- they were bound with the <function>bindParam</function> method
+ they were bound with the <function>PDO::bindParam</function> method
</para></listitem>
</itemizedlist>
</para>
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo/functions/pdo-prepare.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/pdo/functions/pdo-prepare.xml
diff -u phpdoc/en/reference/pdo/functions/pdo-prepare.xml:1.4
phpdoc/en/reference/pdo/functions/pdo-prepare.xml:1.5
--- phpdoc/en/reference/pdo/functions/pdo-prepare.xml:1.4 Wed Nov 10
13:51:28 2004
+++ phpdoc/en/reference/pdo/functions/pdo-prepare.xml Wed Nov 10 14:10:58 2004
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<refentry id='function.pdo-prepare'>
<refnamediv>
<refname>PDO::prepare</refname>
@@ -14,7 +14,7 @@
&warn.experimental.func;
<para>
Prepares an SQL statement to be executed by the statement-handle
- <function>execute</function> method. The SQL statement can contain zero
+ <function>PDO::execute</function> method. The SQL statement can contain zero
or more parameter markers.
</para>
<example><title>Execute a prepared statement by passing an array of
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo/functions/pdo.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/pdo/functions/pdo.xml
diff -u phpdoc/en/reference/pdo/functions/pdo.xml:1.2
phpdoc/en/reference/pdo/functions/pdo.xml:1.3
--- phpdoc/en/reference/pdo/functions/pdo.xml:1.2 Wed Nov 10 03:04:56 2004
+++ phpdoc/en/reference/pdo/functions/pdo.xml Wed Nov 10 14:10:58 2004
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id='function.pdo'>
<refnamediv>
<refname>PDO</refname>
@@ -32,8 +32,8 @@
</para>
<para>
Connections are automatically in autocommit mode. Invoke the
- <function>beginTransaction</function> method to turn off autocommit, and
- call <function>commit</function> or <function>rollback</function> to end
+ <function>PDO::beginTransaction</function> method to turn off autocommit,
and
+ call <function>PDO::commit</function> or <function>PDO::rollback</function>
to end
the transaction. PDO automatically rolls back transactions that are ended
by a closed connection handle.
</para>