The PDO class
Introduction
Represents a connection between PHP and a database server.
Class synopsis
PDO
class PDO
{
__construct
( string $dsn
[, string $username
[, string $password
[, array $driver_options
]]] )
int exec
( string $statement
)
PDOStatement prepare
( string $statement
[, array $driver_options
] )
PDOStatement query
( string $statement
)
string quote
( string $string
[, int $parameter_type
] )
}
Table of Contents
There are no user contributed notes for this page.
|
|