RAW SQL Query with Zend Framework(使用 Zend 框架的原始 SQL 查询)
问题描述
有没有办法在 Zend Framework 中将 SQL 字符串作为查询执行?
Is there a way to execute a SQL String as a query in Zend Framework?
我有一个这样的字符串:
I have a string like that:
$sql = "SELECT * FROM testTable WHERE myColumn = 5"
现在我想直接执行这个字符串,而不是解析它并从它手动"创建一个 Zend_Db_Table_Select 对象.或者,如果可能的话,从该字符串创建一个 Zend_Db_Table_Select 对象,以执行该对象.
now I want to execute this string directly withput parsing it and creating a Zend_Db_Table_Select object from it "by hand". Or if thats possible create a Zend_Db_Table_Select object from this string, to execute that object.
我该怎么做?我在 Zend 文档中没有找到解决方案.
How can I do that? I didn't find a solution for this in the Zend doc.
推荐答案
如果您在开始时创建 Zend_DB 对象,您可以使用它创建查询.看看手册中的这个条目:https://framework.zend.com/manual/1.12/en/zend.db.statement.html
If you're creating a Zend_DB object at the start you can create a query using that. Have a look at this entry in the manual : https://framework.zend.com/manual/1.12/en/zend.db.statement.html
$stmt = $db->query(
'SELECT * FROM bugs WHERE reported_by = ? AND bug_status = ?',
array('goofy', 'FIXED')
);
或
$sql = 'SELECT * FROM bugs WHERE reported_by = ? AND bug_status = ?';
$stmt = new Zend_Db_Statement_Mysqli($db, $sql);
这篇关于使用 Zend 框架的原始 SQL 查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Zend 框架的原始 SQL 查询
基础教程推荐
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- php中的foreach复选框POST 2021-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- 将变量从树枝传递给 js 2022-01-01
- php中的PDF导出 2022-01-01
