From 60f00b886364407f157d2dc348e168a8ca43b4cd Mon Sep 17 00:00:00 2001 From: jwage Date: Wed, 7 Oct 2009 04:07:54 +0000 Subject: [PATCH] [2.0] Fixing cli-config --- tools/sandbox/cli-config.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/sandbox/cli-config.php b/tools/sandbox/cli-config.php index 6434c9e74..ff19f1b03 100644 --- a/tools/sandbox/cli-config.php +++ b/tools/sandbox/cli-config.php @@ -23,10 +23,8 @@ $config = new \Doctrine\ORM\Configuration(); $config->setMetadataCacheImpl(new \Doctrine\Common\Cache\ArrayCache); $connectionOptions = array( - 'driver' => 'pdo_mysql', - 'user' => 'root', - 'password' => '', - 'dbname' => 'doctrine2' + 'driver' => 'pdo_sqlite', + 'path' => 'database.sqlite' ); $em = \Doctrine\ORM\EntityManager::create($connectionOptions, $config);