如何在Zend框架中执行查询
感谢您之前的回复,
我正在执行 "select Name from table_name where id=1";
。我看到了一些从数据库获取数据的教程,他们提到 $DB = new Zend_Db_Adapter_Pdo_Mysql($params); DB->setFetchMode(Zend_Db::FETCH_OBJ);
结果会通过 $result = $DB->fetchAssoc($sql);
这个 $result 是一个数组格式,我只想获取名称而不是从数据库中获取所有数据。我对这个话题很陌生。如果我犯了任何错误,请纠正。
Thanks for previous replies
I am execution "select Name from table_name where id=1";
. i saw some tutorials for getting data from the database, they mentioned $DB = new Zend_Db_Adapter_Pdo_Mysql($params);
and the result will getting through
DB->setFetchMode(Zend_Db::FETCH_OBJ);$result = $DB->fetchAssoc($sql);
This $result is an array format, i want to get only name instead of getting all the data from the database. I am new to this topic. if i made any mistake pls do correct.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
try this:
$var
变量保存您想要进行比较的值,并且仅保存您感兴趣的单个值。The
$var
variable holds the value for which, you wanted the comparison to be made with, and holds only the single values of your interest.