如何从 Propel 的 schema.xml 生成兼容 sqlite3 的转储

发布于 2025-01-01 22:38:32 字数 828 浏览 0 评论 0原文

为了加快单元测试速度,我想使用 SQLite 而不是 MySQL,因此我尝试从 Propel 的 schema.xml 获取与 SQLite 兼容的数据库转储。该应用程序是在 Symfony2 中构建的,config.yml 中的数据库配置如下所示:

propel:
    dbal:
        driver:               sqlite            
        dsn:                  sqlite:/tmp/test_db1.sq3
        default_connection:   db1
        connections:
           db1:
               user:           %database_user%
               password:       %database_password%
               dsn: sqlite:/tmp/test_db1.sq3   
           db2:
               user:           %database_user%
               password:       %database_password%
               dsn: sqlite:/tmp/test_db2.sq

但是,命令 app/console propel:build-sql 始终生成MySQL 特定的转储无法加载到 SQLite 中。

我还从properties.ini 中删除了对MySQL 的任何引用,但仍然没有得到正确的结果。

有什么想法吗?

To speed up the unit tests I want to use SQLite instead of MySQL, so I'm trying to get a SQLite-compatible dump of the databases from Propel's schema.xml. The application is built in Symfony2, and this is how the db configuration in config.yml looks like:

propel:
    dbal:
        driver:               sqlite            
        dsn:                  sqlite:/tmp/test_db1.sq3
        default_connection:   db1
        connections:
           db1:
               user:           %database_user%
               password:       %database_password%
               dsn: sqlite:/tmp/test_db1.sq3   
           db2:
               user:           %database_user%
               password:       %database_password%
               dsn: sqlite:/tmp/test_db2.sq

However, the command app/console propel:build-sql is always generating MySQL-specific dumps that fail to load into SQLite.

I've also removed any references to MySQL from properties.ini and still don't get it right.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

且行且努力 2025-01-08 22:38:32

每个连接名称都必须与数据库名称相关,因此如果声明连接 c1,则需要有一个带有属性 name="c1" 的数据库标记(在您的 schema.xml 中)。

假设您有以下 schema.xml

<database name="default">
    …
</database>

config.yml 中写入以下部分:

propel:
    dbal:
        default_connection:   default
        connections:
            default:
                driver:               mysql            
                username:             root
                dsn:                  mysql:host=localhost;dbname=my_db

config_test.yml 中写入以下定义:

propel:
    dbal:
        connections:
            default:
                driver:               sqlite            
                dsn:                  sqlite:/tmp/test_db1.sq3

然后,如果您想为测试生成 SQL 语句,只需运行:

php app/console --env=test propel:build-sql

为您的开发环境生成 SQL 语句:

php app/console propel:build-sql

php app/console --env=dev propel:build-sql

Each connection name has to be related to a database name, so if you declare a connection c1, you need to have a database tag with the attribute name="c1" (in your schema.xml).

Assuming you have the following schema.xml:

<database name="default">
    …
</database>

Write the following section in your config.yml:

propel:
    dbal:
        default_connection:   default
        connections:
            default:
                driver:               mysql            
                username:             root
                dsn:                  mysql:host=localhost;dbname=my_db

And the following definition in config_test.yml:

propel:
    dbal:
        connections:
            default:
                driver:               sqlite            
                dsn:                  sqlite:/tmp/test_db1.sq3

Then, if you want to generate SQL statements for your tests, just run:

php app/console --env=test propel:build-sql

To generate SQL statements for your dev env:

php app/console propel:build-sql

or

php app/console --env=dev propel:build-sql
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文