Update three function calls to include "PDO::" - partly to clarify, partly so they match exactly when searched on livedocs.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@192398 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Matthew Peters 2005-08-04 12:20:50 +00:00
parent f1b8c3bd33
commit 12d5469d12

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.12 $ -->
<!-- $Revision: 1.13 $ -->
<!-- Generated by xml_proto.php v2.1. Found in /scripts directory of phpdoc. -->
<reference id="ref.sdo.das.rel">
<title>SDO Relational Data Access Service Functions</title>
@ -214,12 +214,12 @@ require_once 'SDO/DAS/Relational.php';
<para>
The Relational DAS applies changes to the database within
a user-delimited transaction: that is, it issues a call to PDO's
<function>beginTransaction</function>
a user-delimited transaction: that is, it issues a call to
<function>PDO::beginTransaction</function>
before beginning to apply changes, and
<function>commit</function>
<function>PDO::commit</function>
or
<function>rollback</function>
<function>PDO::rollback</function>
on completion.
Whichever database is chosen, the database and the PDO driver
for the database must support these calls.