所以你可以使用这样的东西:
$query = $db->select();
$query->from('pages', array('url'));
echo $query->__toString();
检查Zend Db Framework将用于该SELECT查询的sql。是否有一种等效的方法来查看SQL以进行更新?
$data = array(
'content' => stripslashes(htmlspecialchars_decode($content))
);
$n = $db->update('pages', $data, "url = '".$content."'");
??
答案 0 :(得分:31)
使用Zend_Db_Profiler捕获和报告SQL语句:
$db->getProfiler()->setEnabled(true);
$db->update( ... );
print $db->getProfiler()->getLastQueryProfile()->getQuery();
print_r($db->getProfiler()->getLastQueryProfile()->getQueryParams());
$db->getProfiler()->setEnabled(false);
如果您不需要,请记得关闭探查器!我和一个认为他有内存泄漏的人交谈过,但是对于他运行的数百万个SQL查询中的每一个,实例化了一些PHP对象。
PS:您应该在该查询中使用quoteInto()
:
$n = $db->update('pages', $data, $db->quoteInto("url = ?", $content));
答案 1 :(得分:2)
不,不是直接,因为Zend Framework在适配器方法Zend_Db_Adapter_Abstract :: update中构建并执行SQL:
/**
* Updates table rows with specified data based on a WHERE clause.
*
* @param mixed $table The table to update.
* @param array $bind Column-value pairs.
* @param mixed $where UPDATE WHERE clause(s).
* @return int The number of affected rows.
*/
public function update($table, array $bind, $where = '')
{
/**
* Build "col = ?" pairs for the statement,
* except for Zend_Db_Expr which is treated literally.
*/
$set = array();
foreach ($bind as $col => $val) {
if ($val instanceof Zend_Db_Expr) {
$val = $val->__toString();
unset($bind[$col]);
} else {
$val = '?';
}
$set[] = $this->quoteIdentifier($col, true) . ' = ' . $val;
}
$where = $this->_whereExpr($where);
/**
* Build the UPDATE statement
*/
$sql = "UPDATE "
. $this->quoteIdentifier($table, true)
. ' SET ' . implode(', ', $set)
. (($where) ? " WHERE $where" : '');
/**
* Execute the statement and return the number of affected rows
*/
$stmt = $this->query($sql, array_values($bind));
$result = $stmt->rowCount();
return $result;
}
您可以暂时插入一个var_dump并退出此方法以检查sql以确保它是正确的:
/**
* Build the UPDATE statement
*/
$sql = "UPDATE "
. $this->quoteIdentifier($table, true)
. ' SET ' . implode(', ', $set)
. (($where) ? " WHERE $where" : '');
var_dump($sql); exit;
答案 2 :(得分:0)
我认为另一种方法是记录实际的SQL查询,而不是通过组合分析器数据来更改ZF库代码。
$db->getProfiler()->setEnabled(true);
$db->update( ... );
$query = $db->getProfiler()->getLastQueryProfile()->getQuery();
$queryParams = $db->getProfiler()->getLastQueryProfile()->getQueryParams();
$logger->log('SQL: ' . $db->quoteInto($query, $queryParams), Zend_Log::DEBUG);
$db->getProfiler()->setEnabled(false);
答案 3 :(得分:0)
最近遇到了这种寻找调试zend_db_statement的方法。如果其他人遇到相同的搜索,您可以使用以下功能。
只需替换" self :: getDefaultAdapter()"使用获取数据库连接或适配器的方法。
/** * replace any named parameters with placeholders * @param string $sql sql string with placeholders, e.g. :theKey * @param array $bind array keyed on placeholders, e.g. array('theKey', 'THEVALUE') * * @return String sql statement with the placeholders replaced */ public static function debugNamedParamsSql($sql, array $bind) { $sqlDebug = $sql; foreach($bind as $needle => $replace) { $sqlDebug = str_replace( ':' . $needle, self::getDefaultAdapter()->quote($replace), $sqlDebug ); } return $sqlDebug; }