The PDO class
Introduction
Represents a connection between PHP and a database server.
Class synopsis
PDO
{
}Table of Contents
- PDO::beginTransaction - Initiates a transaction
- PDO::commit - Commits a transaction
- PDO::__construct - Creates a PDO instance representing a connection to a database
- PDO::errorCode - Fetch the SQLSTATE associated with the last operation on the database handle
- PDO::errorInfo - Fetch extended error information associated with the last operation on the database handle
- PDO::exec - Execute an SQL statement and return the number of affected rows
- PDO::getAttribute - Retrieve a database connection attribute
- PDO::getAvailableDrivers - Return an array of available PDO drivers
- PDO::inTransaction - Checks if inside a transaction
- PDO::lastInsertId - Returns the ID of the last inserted row or sequence value
- PDO::prepare - Prepares a statement for execution and returns a statement object
- PDO::query - Executes an SQL statement, returning a result set as a PDOStatement object
- PDO::quote - Quotes a string for use in a query.
- PDO::rollBack - Rolls back a transaction
- PDO::setAttribute - Set an attribute




