Doctrine 中是否提供多数据库支持?
我正在评估 Doctrine 在即将到来的项目之一中与 Zend Framework 一起使用。
最关心的是多数据库支持。
Doctrine 是否以与 Zend Framework 相同的方式提供多数据库支持?
请帮助我做出决定。
I was evaluating Doctrine to use with Zend Framework in one of upcoming project.
The biggest concern is multidb support.
Does Doctrine offer the multidb support in the same way Zend Framework does?
Please help me in taking the descision.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 Zend Frameworks 如何处理多个数据库连接,但在 Doctrine 中是如何完成的: http://www.doctrine-project.org/projects/orm/1.2/docs/manual/connections/en
但是,我会考虑使用 Doctrine2 而不是 Doctrine 1.x 。性能比较好啊在 Doctrine2 中,您只需为每个连接使用不同的实体管理器。
I don't know how Zend Frameworks handles multiple database connections but here's how it's done in Doctrine: http://www.doctrine-project.org/projects/orm/1.2/docs/manual/connections/en
However, I'd consider using Doctrine2 instead of Doctrine 1.x. It's better performing. In Doctrine2 you simply use different Entity Manager for each of the connections.