Zend 基本问题 - 如何配置要使用的 DAO?
我有以下目录结构:
auth 控制器 daos
等..
我有这个 DAO 正在工作:
class TeamsDao extends Zend_Db_Table_Abstract {
protected $_name = 'teams';
等等...
我想添加一个新的 DAO,我的问题是:
添加文件和代表新 dao 的新类后,我是否需要告诉 zend 我确实有一个新的 DAO 已就位吗?
谢谢, MEM
I have this following directory structure:
auth
controllers
daos
etc..
I have this DAO working:
class TeamsDao extends Zend_Db_Table_Abstract {
protected $_name = 'teams';
etc...
I want to add a new DAO and my question is:
After adding the file and a new class representing a new dao, do I need to tell zend that I do have a new DAO in place somewhere?
Thanks,
MEM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个实例化 DAO 的问题。无需特殊配置。干杯。
It's a question of instantiating the DAO. No special configuration needed. Cheers.