Doctrine的Doctrine_Core :: generateModelsFromDb方法有哪些可用选项?

时间:2010-04-09 05:36:16

标签: php doctrine doctrine-1.2

Doctrine 1.2有一个名为generateModelFromDb,documented here的方法,它为数据库中的所有表生成模型文件。

此函数接受一个可选的第三个参数,该参数带有一个“选项”数组,用于生成模型时,其详细信息未记录。我可以在这里指定哪些选项?

4 个答案:

答案 0 :(得分:10)

包含Doctrine / Import / Schema默认值的完整列表:

protected $_options = array('packagesPrefix'        =>  'Package',
                            'packagesPath'          =>  '',
                            'packagesFolderName'    =>  'packages',
                            'suffix'                =>  '.php',
                            'generateBaseClasses'   =>  true,
                            'generateTableClasses'  =>  false,
                            'generateAccessors'     =>  false,
                            'baseClassPrefix'       =>  'Base',
                            'baseClassesDirectory'  =>  'generated',
                            'baseClassName'         =>  'Doctrine_Record');

答案 1 :(得分:3)

使用Doctrine1.2.4 -

该列表中有一些缺失 - 它们是重要的!

'pearStyle'             => true,
'classPrefix'           => '',
'classPrefixFiles'      => false,

我在为Zend Framework项目生成我的类时使用了这个,例如脚本:

<?php

/**
 * Doctrine CLI script
 */

define('APPLICATION_ENV', 'development');

define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));

set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . '/../library'),
    realpath(APPLICATION_PATH . '/../library/Doctrine'),
    get_include_path(),
)));

require_once 'Zend/Application.php';

// Create application, bootstrap, and run
$application = new Zend_Application(
    APPLICATION_ENV,
    APPLICATION_PATH . '/config/default.ini'
);

$application->getBootstrap()->bootstrap('doctrine');

Doctrine::generateModelsFromDb(
    APPLICATION_PATH . '/modules/default/models/DbTable', 
    array('db1'),
    array(
        'pearStyle'            => true,
        'generateTableClasses' => true,
        'baseClassesDirectory' => '',
        'classPrefix'=> 'Model_DbTable_',
        'classPrefixFiles' => false,
        'baseClassPrefix' => 'Generated_'
     )
);

答案 2 :(得分:0)

我见过的最好的是:

http://www.doctrine-project.org/documentation/manual/1_2/ru/defining-models

...您可以尝试在页面上搜索任何特定于数据类型的“选项”。我没有遇到过比这更全面的事情。 API文档似乎假设可能的选项很明显。

答案 3 :(得分:0)

这看起来很有希望: 来自here

 // Generate your models from an existing database
 Doctrine::generateModelsFromDb('/path/to/generate/models', array('connection_name'),   $options);

 // Array of options and the default values
 $options = array('packagesPrefix'        =>  'Package',
                  'packagesPath'          =>  '',
                  'packagesFolderName'    =>  'packages',
                  'suffix'                =>  '.php',
                  'generateBaseClasses'   =>  true,
                  'baseClassesPrefix'     =>  'Base',
                  'baseClassesDirectory'  =>  'generated',
                  'baseClassName'         =>  'Doctrine_Record');