Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 369

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>PHP Data Objects</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.odbc-tables.html">odbc_tables</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="intro.pdo.html">Introduction</a></div>
 <div class="up"><a href="refs.database.abstract.html">Abstraction Layers</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="book.pdo" class="book">
 
 <h1 class="title">PHP Data Objects</h1>
 
 
 
 
 
 
 







 







 





 

 







 







 







 








 



 



 



 



 



 




 

 






<ul class="chunklist chunklist_book"><li><a href="intro.pdo.html">Introduction</a></li><li><a href="pdo.setup.html">Installing/Configuring</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="pdo.requirements.html">Requirements</a></li><li><a href="pdo.installation.html">Installation</a></li><li><a href="pdo.configuration.html">Runtime Configuration</a></li><li><a href="pdo.resources.html">Resource Types</a></li></ul></li><li><a href="pdo.constants.html">Predefined Constants</a></li><li><a href="pdo.connections.html">Connections and Connection management</a></li><li><a href="pdo.transactions.html">Transactions and auto-commit</a></li><li><a href="pdo.prepared-statements.html">Prepared statements and stored procedures</a></li><li><a href="pdo.error-handling.html">Errors and error handling</a></li><li><a href="pdo.lobs.html">Large Objects (LOBs)</a></li><li><a href="class.pdo.html">PDO</a> — The PDO class<ul class="chunklist chunklist_book chunklist_children"><li><a href="pdo.begintransaction.html">PDO::beginTransaction</a> — Initiates a transaction</li><li><a href="pdo.commit.html">PDO::commit</a> — Commits a transaction</li><li><a href="pdo.construct.html">PDO::__construct</a> — Creates a PDO instance representing a connection to a database</li><li><a href="pdo.errorcode.html">PDO::errorCode</a> — Fetch the SQLSTATE associated with the last operation on the database handle</li><li><a href="pdo.errorinfo.html">PDO::errorInfo</a> — Fetch extended error information associated with the last operation on the database handle</li><li><a href="pdo.exec.html">PDO::exec</a> — Execute an SQL statement and return the number of affected rows</li><li><a href="pdo.getattribute.html">PDO::getAttribute</a> — Retrieve a database connection attribute</li><li><a href="pdo.getavailabledrivers.html">PDO::getAvailableDrivers</a> — Return an array of available PDO drivers</li><li><a href="pdo.intransaction.html">PDO::inTransaction</a> — Checks if inside a transaction</li><li><a href="pdo.lastinsertid.html">PDO::lastInsertId</a> — Returns the ID of the last inserted row or sequence value</li><li><a href="pdo.prepare.html">PDO::prepare</a> — Prepares a statement for execution and returns a statement object</li><li><a href="pdo.query.html">PDO::query</a> — Executes an SQL statement, returning a result set as a PDOStatement object</li><li><a href="pdo.quote.html">PDO::quote</a> — Quotes a string for use in a query.</li><li><a href="pdo.rollback.html">PDO::rollBack</a> — Rolls back a transaction</li><li><a href="pdo.setattribute.html">PDO::setAttribute</a> — Set an attribute</li></ul></li><li><a href="class.pdostatement.html">PDOStatement</a> — The PDOStatement class<ul class="chunklist chunklist_book chunklist_children"><li><a href="pdostatement.bindcolumn.html">PDOStatement::bindColumn</a> — Bind a column to a PHP variable</li><li><a href="pdostatement.bindparam.html">PDOStatement::bindParam</a> — Binds a parameter to the specified variable name</li><li><a href="pdostatement.bindvalue.html">PDOStatement::bindValue</a> — Binds a value to a parameter</li><li><a href="pdostatement.closecursor.html">PDOStatement::closeCursor</a> — Closes the cursor, enabling the statement to be executed again.</li><li><a href="pdostatement.columncount.html">PDOStatement::columnCount</a> — Returns the number of columns in the result set</li><li><a href="pdostatement.debugdumpparams.html">PDOStatement::debugDumpParams</a> — Dump an SQL prepared command</li><li><a href="pdostatement.errorcode.html">PDOStatement::errorCode</a> — Fetch the SQLSTATE associated with the last operation on the statement handle</li><li><a href="pdostatement.errorinfo.html">PDOStatement::errorInfo</a> — Fetch extended error information associated with the last operation on the statement handle</li><li><a href="pdostatement.execute.html">PDOStatement::execute</a> — Executes a prepared statement</li><li><a href="pdostatement.fetch.html">PDOStatement::fetch</a> — Fetches the next row from a result set</li><li><a href="pdostatement.fetchall.html">PDOStatement::fetchAll</a> — Returns an array containing all of the result set rows</li><li><a href="pdostatement.fetchcolumn.html">PDOStatement::fetchColumn</a> — Returns a single column from the next row of a result set</li><li><a href="pdostatement.fetchobject.html">PDOStatement::fetchObject</a> — Fetches the next row and returns it as an object.</li><li><a href="pdostatement.getattribute.html">PDOStatement::getAttribute</a> — Retrieve a statement attribute</li><li><a href="pdostatement.getcolumnmeta.html">PDOStatement::getColumnMeta</a> — Returns metadata for a column in a result set</li><li><a href="pdostatement.nextrowset.html">PDOStatement::nextRowset</a> — Advances to the next rowset in a multi-rowset statement handle</li><li><a href="pdostatement.rowcount.html">PDOStatement::rowCount</a> — Returns the number of rows affected by the last SQL statement</li><li><a href="pdostatement.setattribute.html">PDOStatement::setAttribute</a> — Set a statement attribute</li><li><a href="pdostatement.setfetchmode.html">PDOStatement::setFetchMode</a> — Set the default fetch mode for this statement</li></ul></li><li><a href="class.pdoexception.html">PDOException</a> — The PDOException class</li><li><a href="pdo.drivers.html">PDO Drivers</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="ref.pdo-cubrid.html">CUBRID (PDO)</a> — CUBRID Functions (PDO_CUBRID)</li><li><a href="ref.pdo-dblib.html">MS SQL Server (PDO)</a> — Microsoft SQL Server and Sybase Functions (PDO_DBLIB)</li><li><a href="ref.pdo-firebird.html">Firebird (PDO)</a> — Firebird Functions (PDO_FIREBIRD)</li><li><a href="ref.pdo-ibm.html">IBM (PDO)</a> — IBM Functions (PDO_IBM)</li><li><a href="ref.pdo-informix.html">Informix (PDO)</a> — Informix Functions (PDO_INFORMIX)</li><li><a href="ref.pdo-mysql.html">MySQL (PDO)</a> — MySQL Functions (PDO_MYSQL)</li><li><a href="ref.pdo-sqlsrv.html">MS SQL Server (PDO)</a> — Microsoft SQL Server Functions (PDO_SQLSRV)</li><li><a href="ref.pdo-oci.html">Oracle (PDO)</a> — Oracle Functions (PDO_OCI)</li><li><a href="ref.pdo-odbc.html">ODBC and DB2 (PDO)</a> — ODBC and DB2 Functions (PDO_ODBC)</li><li><a href="ref.pdo-pgsql.html">PostgreSQL (PDO)</a> — PostgreSQL Functions (PDO_PGSQL)</li><li><a href="ref.pdo-sqlite.html">SQLite (PDO)</a> — SQLite Functions (PDO_SQLITE)</li><li><a href="ref.pdo-4d.html">4D (PDO)</a> — 4D Functions (PDO_4D)</li></ul></li></ul></div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.odbc-tables.html">odbc_tables</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="intro.pdo.html">Introduction</a></div>
 <div class="up"><a href="refs.database.abstract.html">Abstraction Layers</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>