I'm trying to use Doctrine to reverse-engineer my database schema into YML with this command:
php C:\wamp\bin\php\php5.3.13\pear\bin\doctrine.php orm:convert-mapping --from-database yml C:\wamp\www\drupal-7.15\sites\all\modules\dbManip\ymlEntities
I get no errors, warnings, message: I get nothing. But the ymlEntities directory is still empty. It seems that this command successfully does nothing. What am I doing wrong?
FYI:
cli-config.php
<?php
require_once("prepareDoctrine.php");
$em = $entityManager_globalObject;
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array(
'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()),
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em)
));
$em->getConfiguration()->setMetadataDriverImpl(
new \Doctrine\ORM\Mapping\Driver\DatabaseDriver(
$em->getConnection()->getSchemaManager()
)
);
$cmf = new DisconnectedClassMetadataFactory();
$cmf->setEntityManager($em);
$metadata = $cmf->getAllMetadata();
error_log("Done cli-config.php\n", 3, "C:\\wamp\\www\\log.txt"); // This message does appear in log.txt, indicating that running that cli command DOES execute cli-config.php
?>
prepareDoctrine.php
<?php
use Doctrine\ORM\Tools\Setup;
require_once("Doctrine/ORM/Tools/Setup.php");
Setup::registerAutoloadPEAR();
$classloader = new Doctrine\Common\ClassLoader('Entities', __DIR__);
$classloader->register();
$paths = array();
$isDevMode = true;
$config = Setup::createAnnotationMetadataConfiguration($paths, $isDevMode);
$dbParams = array(
"driver" => "pdo_mysql",
"host" => "myHost.ca",
"user" => "myUsername",
"password" => "myPassword",
"dbname" => "myDbName"
);
global $entityManager_globalObject;
$entityManager_globalObject = \Doctrine\ORM\EntityManager::create($dbParams, $config);
?>