11 lines
261 B
PHP
11 lines
261 B
PHP
<?php
|
|
|
|
// using PDO dsn for connecting sqlite memory table
|
|
|
|
//$dbh = Doctrine_DB::getConnection('sqlite::memory:');
|
|
|
|
// using PEAR like dsn for connecting mysql database
|
|
|
|
//$dbh = Doctrine_DB::getConnection('mysql://root:password@localhost/test');
|
|
?>
|