Symfony 2 和带有 yml 的数据库结构

发布于 2024-12-08 10:27:17 字数 150 浏览 0 评论 0原文

在获得了 Symfony 1.4 的良好体验后,我开始熟悉 Symfony-2。

我正在寻找从 yml 文件(或多个文件)创建数据库的好教程,但找不到任何教程。

是否可以在 yml 文件中定义表和约束之间的关系?我找到的唯一文档讨论了实体文件中的元数据。

I am getting familiar to Symfony-2 after having good experience with Symfony 1.4.

I was searching for a good tutorial of creating the database from a yml file (or several files), and could not find any.

Is it possible to define relations between tables and constrains in the yml file? The only documentation I found talks about metadata in the Entity file.

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

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

发布评论

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

评论(2

别靠近我心 2024-12-15 10:27:17

请注意:某些类型的约束将无法正常工作:例如,如果您使用 MySQL PDO,字符串类型列中的 fixed 不会转换为 CHAR,而是转换为 VARCHAR。我还发现了 YALM 的一些未记录的限制:

唯一索引

MyCompany\MyApp\MyClass:
  type: entity
  table: myclass
  uniqueConstraints:
    UNIQ_NAME:
    columns: [column1, column2]

一般索引

MyCompany\MyApp\MyClass:
  type: entity
  table: myclass
  indexes:
    IDX_NAME:
    columns: [column1, column2]

Be aware: some kind of constraints will not work properly: e.g. fixed in a column of type string is not translated as CHAR if you use MySQL PDO, but as VARCHAR. Also i found some undocumented constraints for YALM:

Unique index

MyCompany\MyApp\MyClass:
  type: entity
  table: myclass
  uniqueConstraints:
    UNIQ_NAME:
    columns: [column1, column2]

General index:

MyCompany\MyApp\MyClass:
  type: entity
  table: myclass
  indexes:
    IDX_NAME:
    columns: [column1, column2]
哥,最终变帅啦 2024-12-15 10:27:17

请参阅学说手册。您可以为每个示例在 PHP 注释XMLYAML 之间切换。

Please see the Doctrine manual... You can switch between PHP Annotations, XML and YAML for every example.

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