如何将你自己的 mysql 连接传递给 Zend_DB?
我有自己的 mysql_connect ...等,直到我想使用 ZEND 框架,特别是 Zend_DB 。如何将我的连接传递为 ZEND 的适配器?
$myconn = mysql_connect('...blab',blah etc...)
eg. Zend_DB_table::setAdapter($myconn);
I have my own mysql_connect ...etc until i wanted to use ZEND framework in particular with Zend_DB .How do I pass my connection to be used as an adapter to ZEND?
$myconn = mysql_connect('...blab',blah etc...)
eg. Zend_DB_table::setAdapter($myconn);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要自己连接到数据库,而是使用工厂
这样您可以连接到数据库,但它只会在您需要连接时连接,从而优化性能......
Don't connect to DB on your own, rather use the factory
This way you can connect to DB, but it will connect only once you need the connection and thus optimize for performance...