> php doctrine-cli.php orm:schema-tool:create
ATTENTION: This operation should not be executed in a production environment.
Creating database schema...
[Doctrine\ORM\Tools\ToolsException]
Schema-Tool failed with Error 'could not find driver' while executing DDL: CREATE TABLE comment (id INT AUTO_INCREMENT NOT NULL, parentid INT NOT NULL,
I use this connecting options
$connectionOptions = array(
'driver' => 'pdo_mysql',
'user' => 'root',
'password' => 'password',
'host' => 'localhost',
'dbname' => 'interview2',
'charset' => 'utf8'
);
Doctrine has PDOMySql in Drivers directory. What is the problem? How can i solve this problem?