如何连接数据库
感谢之前的回复
如何将mysql连接到zend框架。我在mysql中创建了表。我使用
$config = array(host' => 'localhost',username' => 'userName','password' => 'sqlpass', '数据库名称' => '数据库名称',$db = Zend_Db::factory('PDO_MYSQL', $config); print_r($db->fetchAll("SELECT * FROM tablename"));
此命令用于连接数据库,但每当我尝试此操作时,都不会显示任何内容。有没有zend框架连接数据库的教程。我对这个话题很陌生。请指导我。
Thanks for previous replies
How to connect mysql to zend framework. i created table in mysql. i used
$config = array(host' => 'localhost',username' => 'userName','password' => 'sqlpass',
this command to connect with database, but whenever i tried this, nothing is displayed. Is there any tutorials to connect database with zend framework. i am new to this topic. pls guide me.
'dbname' => 'databasename',$db = Zend_Db::factory('PDO_MYSQL', $config);
print_r($db->fetchAll("SELECT * FROM tablename"));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
现在尝试使用 fetchAll()。
您收到哪个错误?
try this:
and now try with fetchAll().
which error do you receive?