Zend 框架中表、行集和行之间的关系?

发布于 2024-08-04 13:52:35 字数 612 浏览 12 评论 0原文

我正在开发一个项目,需要使用 Zend_Form 在 MySQL 表中插入/更新行。我试图通过扩展 Zend_Db 来简化插入/更新过程,并且似乎很多工作都是通过 Zend_Db_Table 和 Zend_Db_Table_Row 完成的。

但是,我不明白如何以最有效的方式将它们链接在一起。例如,我有一个名为 companies 的数据库表。然后,我有一个名为 CompaniesTable 的模型,它扩展了 Zend_Db_Table 和一个名为 CompanyTable 的模型,它扩展了 Zend_Db_Table_Row

我希望能够查询 companies 表中的行、插入/更新/删除单个公司等。我看到一些引用 DomainModel 的网站 (http://en.wikipedia.org/wiki/Domain_model),但找不到关于如何在 Zend Framework 中执行此操作的良好解释。

有谁知道一个好的教程吗?

干杯,
马特

I'm working on a project that requires a fair bit of inserting/updating rows in MySQL tables using Zend_Form. I'm trying to simplify the insert/update procedure by extending Zend_Db, and it seems a lot of this has been done with Zend_Db_Table and Zend_Db_Table_Row.

However, I can't understand how to link them together in the most efficient way. For example, I have a DB table called companies. I then have a model called CompaniesTable that extends Zend_Db_Table and a model called CompanyTable that extends Zend_Db_Table_Row.

I want to be able to query the companies table for rows, insert/update/delete individual companies etc. I see a few sites referring to the DomainModel (http://en.wikipedia.org/wiki/Domain_model) but can't find a good explanation of how to do it in Zend Framework.

Does anyone know of a good tutorial?

Cheers,
Matt

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

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

发布评论

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

评论(1

剧终人散尽 2024-08-11 13:52:35

http://www.survivethedeepend.com/ 是一本关于使用 ZF 最佳实践的免费在线书籍的网站,由采埃孚长期撰稿人 Pádraic Brady 撰写。

特别阅读第3章,模型第 9 章,实现域模型

http://www.survivethedeepend.com/ is the site for a free online book about best practices using ZF, being written by Pádraic Brady, a long-time ZF contributor.

Especially read Chapter 3, The Model, and Chapter 9, Implementing the Domain Model.

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