Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
?>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.