1
0
mirror of synced 2024-12-15 07:36:03 +03:00
doctrine2/manual/docs/en/connection-management/opening-a-new-connection.txt

14 lines
386 B
Plaintext
Raw Normal View History

2007-06-13 02:18:21 +04:00
Opening a new database connection in Doctrine is very easy. If you wish to use PDO (www.php.net/PDO) you can just initalize a new PDO object:
<code type="php">
$dsn = 'mysql:dbname=testdb;host=127.0.0.1';
$user = 'dbuser';
$password = 'dbpass';
try {
$dbh = new PDO($dsn, $user, $password);
} catch (PDOException $e) {
echo 'Connection failed: ' . $e->getMessage();
}
</code>