2006-09-29 11:49:50 +00:00
|
|
|
<?php
|
|
|
|
|
2006-10-19 19:22:10 +00:00
|
|
|
// using PDO like dsn for connecting sqlite memory table
|
2006-09-29 11:49:50 +00:00
|
|
|
|
2006-10-19 19:22:10 +00:00
|
|
|
$dbh = Doctrine_DB::getConnection('sqlite::memory:');
|
|
|
|
|
|
|
|
// using PDO like dsn for connecting pgsql database
|
|
|
|
|
|
|
|
$dbh = Doctrine_DB::getConnection('pgsql://root:password@localhost/mydb');
|
2006-09-29 11:49:50 +00:00
|
|
|
|
|
|
|
// using PEAR like dsn for connecting mysql database
|
|
|
|
|
2006-10-19 19:22:10 +00:00
|
|
|
$dbh = Doctrine_DB::getConnection('mysql://root:password@localhost/test');
|
2006-09-29 11:49:50 +00:00
|
|
|
?>
|