Logo
You
Code

La clase PDO

Autor YouCode - http://www.youcode.com.ar/php/la-clase-pdo-23

Representa una conexión entre PHP y un servidor de bases de datos.

Sinopsis de la Clase
 

PDO {
public __construct ( string $dsn [, string $username [, 
string $password [, array $driver_options ]]] )
public bool beginTransaction ( void )
public bool commit ( void )
public mixed errorCode ( void )
public array errorInfo ( void )
public int exec ( string $statement )
public mixed getAttribute ( int $attribute )
public static array getAvailableDrivers ( void )
public bool inTransaction ( void )
public string lastInsertId ([ string $name = NULL ] )
public PDOStatement prepare ( string $statement [, array $driver_options = array() ] )
public PDOStatement query ( string $statement )
public string quote ( string $string [, int $parameter_type = PDO::PARAM_STR ] )
public bool rollBack ( void )
public bool setAttribute ( int $attribute , mixed $value )

}

 

http://www.youcode.com.ar/php/la-clase-pdo-23