From 691978890368afd65f8d6977df22ea5e386dab5a Mon Sep 17 00:00:00 2001 From: meus Date: Sat, 21 Jul 2007 16:43:40 +0000 Subject: [PATCH] fixes #400 use new syntax for connection --- .../en/getting-started/working-with-existing-databases.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/manual/new/docs/en/getting-started/working-with-existing-databases.txt b/manual/new/docs/en/getting-started/working-with-existing-databases.txt index 01efdc740..ba84109a9 100644 --- a/manual/new/docs/en/getting-started/working-with-existing-databases.txt +++ b/manual/new/docs/en/getting-started/working-with-existing-databases.txt @@ -28,8 +28,7 @@ Now we would like to convert it into Doctrine record class. It can be achieved e require_once('lib/Doctrine.php'); spl_autoload_register(array('Doctrine', 'autoload')); - -$conn = Doctrine_Manager::connection(new Doctrine_Db('mysql://root:dc34@localhost/test')); +$conn = Doctrine_Manager::connection('mysql://root:dc34@localhost/test'); // import method takes one parameter: the import directory (the directory where // the generated record files will be put in