Symfony + Propel:设置连接整理

时间:2013-01-15 22:00:08

标签: mysql symfony pdo propel collation

我正在使用与Propel 1.6.7集成的Symfony 2.1.6框架作为数据库ORM通过MySQL Server 5.5.28而我将问题设置为utf8_unicode_ci

我的 app / config / config.yml

...
propel:
    dbal:
        driver:               %database_driver%
        user:                 %database_user%
        password:             %database_password%
        dsn:                  "%database_driver%:host=%database_host%;dbname=%database_name%;charset=%database_charset%"
        options:
            MYSQL_ATTR_INIT_COMMAND: "SET NAMES utf8 COLLATE utf8_unicode_ci"
        attributes:           {}

(参数已在 app / config / parameters.yml 中定义)

没有options它可以工作,但是有charset问题(MySQL默认为utf8_general_ci排序规则,但数据库模式是用utf8_unicode_ci定义的)。如果我使用options,如上所述,Propel / Symfony引发了一系列例外:

in /var/www/vendor/propel/propel1/runtime/lib/Propel.php at line 725  -+
at ErrorHandler ->handle ('2', 'Illegal string offset 'value'', '/var/www/vendor/propel/propel1/runtime/lib/Propel.php', '725', array('source' => array('MYSQL_ATTR_INIT_COMMAND' => 'SET NAMES utf8 COLLATE utf8_unicode_ci'), 'write_to' => array(), 'option' => 'MYSQL_ATTR_INIT_COMMAND', 'optiondata' => 'SET NAMES utf8 COLLATE utf8_unicode_ci', 'key' => '1002'))
in /var/www/vendor/propel/propel1/runtime/lib/Propel.php at line 725  -+
at Propel ::processDriverOptions (array('MYSQL_ATTR_INIT_COMMAND' => 'SET NAMES utf8 COLLATE utf8_unicode_ci'), array())
in /var/www/vendor/propel/propel1/runtime/lib/Propel.php at line 668  -+
at Propel ::initConnection (array('dsn' => 'mysql:host=127.0.0.1;dbname=symfony;charset=utf8', 'user' => 'root', 'password' => '********', 'classname' => 'DebugPDO', 'options' => array('MYSQL_ATTR_INIT_COMMAND' => 'SET NAMES utf8 COLLATE utf8_unicode_ci'), 'attributes' => array(), 'settings' => array()), 'default')
in /var/www/vendor/propel/propel1/runtime/lib/Propel.php at line 576  -+
at Propel ::getMasterConnection ('default')
in /var/www/vendor/propel/propel1/runtime/lib/Propel.php at line 602  -+
at Propel ::getSlaveConnection ('default')
in /var/www/vendor/propel/propel1/runtime/lib/Propel.php at line 552  -+
at Propel ::getConnection ('default', 'read')
in /var/www/vendor/propel/propel1/runtime/lib/query/ModelCriteria.php at line 1160  -+
at ModelCriteria ->find ()
in /var/www/src/Acme/AppBundle/Controller/DefaultController.php at line 20  -+
at DefaultController ->fooAction ()
at call_user_func_array (array(object(DefaultController), 'fooAction'), array())
in kernel.root_dir/bootstrap.php.cache at line 1426  -+
at HttpKernel ->handleRaw (object(Request), '1')
in kernel.root_dir/bootstrap.php.cache at line 1390  -+
at HttpKernel ->handle (object(Request), '1', true)
in kernel.root_dir/bootstrap.php.cache at line 1566  -+
at HttpKernel ->handle (object(Request), '1', true)
in kernel.root_dir/bootstrap.php.cache at line 617  -+
at Kernel ->handle (object(Request))
in /var/www/web/app_dev.php at line 25  -+

我知道我可以直接从服务器配置更改 my.cnf 来定义MySQL默认排序规则,但我需要在运行时设置它...我错过了什么吗?我应该如何在 app / config / config.yml 中设置MYSQL_ATTR_INIT_COMMAND

2 个答案:

答案 0 :(得分:1)

如果您看到源代码here

$value = $optiondata['value']; // this is line no 275
if (is_string($value) && strpos($value, '::') !== false) {
    if (!defined($value)) {
       throw new PropelException("Invalid PDO option/attribute value specified: ".$value);
    }
    $value = constant($value);
}

它期望选项数据中的“值”键,所以试试这个

propel:
    dbal:
        driver:               %database_driver%
        user:                 %database_user%
        password:             %database_password%
        dsn:                  "%database_driver%:host=%database_host%;dbname=%database_name%;charset=%database_charset%"
        options:
            MYSQL_ATTR_INIT_COMMAND: { value: "SET NAMES utf8 COLLATE utf8_unicode_ci" }
        attributes:           {}

您还可以定义在连接打开后必须立即执行的查询

propel:
    dbal:
        default_connection:         default
        connections:
            default:
                # ...
                options:
                    ATTR_PERSISTENT: false
                attributes:
                    ATTR_EMULATE_PREPARES: true
                settings:
                    charset:        { value: UTF8 }
                    queries:        { query: 'INSERT INTO BAR ('hey', 'there')' }

仅供参考:https://github.com/propelorm/PropelBundle/blob/1.1/Resources/doc/configuration.markdown

Propel runtime configuration file

答案 1 :(得分:0)

关于更改my.cnf的要点,如果仅对您要使用的数据库需要特定的排序规则设置,那么我认为最好在使用命令“”创建数据库时覆盖排序规则设置。创建数据库db_name CHARACTER SET utf8 COLLATE utf8_unicode_ci “而不是通过编辑my.cnf来全局更改