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