philip Thu Feb 10 12:32:42 2005 EDT
Modified files: /phpdoc/en/reference/pdo reference.xml Log: Whitespace
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo/reference.xml?r1=1.17&r2=1.18&ty=u Index: phpdoc/en/reference/pdo/reference.xml diff -u phpdoc/en/reference/pdo/reference.xml:1.17 phpdoc/en/reference/pdo/reference.xml:1.18 --- phpdoc/en/reference/pdo/reference.xml:1.17 Thu Feb 10 12:23:58 2005 +++ phpdoc/en/reference/pdo/reference.xml Thu Feb 10 12:32:42 2005 @@ -1,5 +1,5 @@ <?xml version='1.0' encoding='iso-8859-1'?> -<!-- $Revision: 1.17 $ --> +<!-- $Revision: 1.18 $ --> <!-- Generated by xml_proto.php v2.1. Found in /scripts directory of phpdoc. --> <reference id="ref.pdo"> <title>PDO Functions</title> @@ -192,8 +192,10 @@ &reftitle.constructor; <itemizedlist> <listitem> - <para><link linkend='function.PDO-construct'>PDO</link> - constructs a new PDO - object</para> + <para> + <link linkend='function.PDO-construct'>PDO</link> - constructs a new + PDO object + </para> </listitem> </itemizedlist> </section> @@ -201,120 +203,174 @@ &reftitle.methods; <itemizedlist> <listitem> - <para><link linkend='function.PDO-beginTransaction'>beginTransaction - </link> - begins a transaction</para> + <para> + <link linkend='function.PDO-beginTransaction'>beginTransaction</link> + - begins a transaction + </para> </listitem> <listitem> - <para><link linkend='function.PDO-commit'>commit</link> - commits a - transaction</para> + <para> + <link linkend='function.PDO-commit'>commit</link> + - commits a transaction + </para> </listitem> <listitem> - <para><link linkend='function.PDO-exec'>exec</link> - issues an SQL - statement and returns the number of affected rows</para> + <para> + <link linkend='function.PDO-exec'>exec</link> + - issues an SQL statement and returns the number of affected rows + </para> </listitem> <listitem> - <para><link linkend='function.PDO-errorCode'>errorCode</link> - - retrieves an error code, if any, from the database</para> + <para> + <link linkend='function.PDO-errorCode'>errorCode</link> + - retrieves an error code, if any, from the database + </para> </listitem> <listitem> - <para><link linkend='function.PDO-errorInfo'>errorInfo</link> - - retrieves an array of error information, if any, from the - database</para> + <para> + <link linkend='function.PDO-errorInfo'>errorInfo</link> + - retrieves an array of error information, if any, from the + database + </para> </listitem> <listitem> - <para><link linkend='function.PDO-getAttribute'>getAttribute</link> - - retrieves a database connection attribute</para> + <para> + <link linkend='function.PDO-getAttribute'>getAttribute</link> + - retrieves a database connection attribute + </para> </listitem> <listitem> - <para><link linkend='function.PDO-lastInsertId'>lastInsertId</link> - - retrieves the value of the last row that was inserted into a - table</para> + <para> + <link linkend='function.PDO-lastInsertId'>lastInsertId</link> + - retrieves the value of the last row that was inserted into a table + </para> </listitem> <listitem> - <para><link linkend='function.PDO-prepare'>prepare</link> - prepares - an SQL statement for execution</para> + <para> + <link linkend='function.PDO-prepare'>prepare</link> + - prepares an SQL statement for execution + </para> </listitem> <listitem> - <para><link linkend='function.PDO-query'>query</link> - issues an SQL - statement and returns a result set</para> + <para> + <link linkend='function.PDO-query'>query</link> + - issues an SQL statement and returns a result set + </para> </listitem> <listitem> - <para><link linkend='function.PDO-quote'>quote</link> - returns a - quoted version of a string for use in SQL statements</para> + <para> + <link linkend='function.PDO-quote'>quote</link> + - returns a quoted version of a string for use in SQL statements + </para> </listitem> <listitem> - <para><link linkend='function.PDO-rollBack'>rollBack</link> - roll - back a transaction</para> + <para> + <link linkend='function.PDO-rollBack'>rollBack</link> + - roll back a transaction + </para> </listitem> <listitem> - <para><link linkend='function.PDO-setAttribute'>setAttribute</link> - - sets a database connection attribute</para> + <para> + <link linkend='function.PDO-setAttribute'>setAttribute</link> + - sets a database connection attribute + </para> </listitem> </itemizedlist> </section> </section> <section id='pdo.class.PDOStatement'> <title><classname>PDOStatement</classname></title> - <para>Represents a prepared statement and, after the statement is - executed, an associated result set.</para> + <para> + Represents a prepared statement and, after the statement is executed, an + associated result set. + </para> <section id='pdo.class.Statement.methods'> &reftitle.methods; <itemizedlist> <listitem> - <para><link linkend='function.PDOStatement-bindColumn'>bindColumn</link> - binds a - PHP variable to an output column in a result set</para> + <para> + <link linkend='function.PDOStatement-bindColumn'>bindColumn</link> + - binds a PHP variable to an output column in a result set + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-bindParam'>bindParam</link> - binds a - PHP variable to a parameter in the prepared statement</para> + <para> + <link linkend='function.PDOStatement-bindParam'>bindParam</link> + - binds a PHP variable to a parameter in the prepared statement + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-columnCount'>columnCount</link> - - returns the number of columns in the result set</para> + <para> + <link linkend='function.PDOStatement-columnCount'>columnCount</link> + - returns the number of columns in the result set + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-errorCode'>errorCode</link> - - retrieves an error code, if any, from the statement</para> + <para> + <link linkend='function.PDOStatement-errorCode'>errorCode</link> + - retrieves an error code, if any, from the statement + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-errorInfo'>errorInfo</link> - - retrieves an array of error information, if any, from the statement</para> + <para> + <link linkend='function.PDOStatement-errorInfo'>errorInfo</link> + - retrieves an array of error information, if any, from the statement + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-execute'>execute</link> - executes a - prepared statement</para> + <para> + <link linkend='function.PDOStatement-execute'>execute</link> + - executes a prepared statement + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-fetch'>fetch</link> - fetches a - row from a result set</para> + <para> + <link linkend='function.PDOStatement-fetch'>fetch</link> + - fetches a row from a result set + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-fetchAll'>fetchAll</link> - fetches an - array containing all of the rows from a result set</para> + <para> + <link linkend='function.PDOStatement-fetchAll'>fetchAll</link> + - fetches an array containing all of the rows from a result set + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-fetchSingle'>fetchSingle</link> - returns - the data from the first column in a result set</para> + <para> + <link linkend='function.PDOStatement-fetchSingle'>fetchSingle</link> + - returns the data from the first column in a result set + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-getAttribute'>getAttribute</link> - - retrieves a PDOStatement attribute</para> + <para> + <link linkend='function.PDOStatement-getAttribute'>getAttribute</link> + - retrieves a PDOStatement attribute + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-getColumnMeta'>getColumnMeta</link> - - retrieves metadata for a column in the result set</para> + <para> + <link linkend='function.PDOStatement-getColumnMeta'>getColumnMeta</link> + - retrieves metadata for a column in the result set + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-rowCount'>rowCount</link> - returns the - number of rows that were affected by the execution of an SQL statement</para> + <para> + <link linkend='function.PDOStatement-rowCount'>rowCount</link> + - returns the number of rows that were affected by the execution of + an SQL statement + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-setAttribute'>setAttribute</link> - - sets a PDOStatement attribute</para> + <para> + <link linkend='function.PDOStatement-setAttribute'>setAttribute</link> + - sets a PDOStatement attribute + </para> </listitem> <listitem> - <para><link linkend='function.PDOStatement-setFetchMode'>setFetchMode</link> - - sets the fetch mode for a PDOStatement</para> + <para> + <link linkend='function.PDOStatement-setFetchMode'>setFetchMode</link> + - sets the fetch mode for a PDOStatement + </para> </listitem> </itemizedlist> </section>