19

所以你可以使用这样的东西:

$query = $db->select();
$query->from('pages', array('url'));
echo $query->__toString();

检查 Zend Db 框架将用于该 SELECT 查询的 sql。是否有一种等效的方式来查看 SQL 以进行更新?

$data = array(
   'content'      => stripslashes(htmlspecialchars_decode($content))
);      
$n = $db->update('pages', $data, "url = '".$content."'");
??
4

4 回答 4

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));
于 2009-06-17T21:40:59.790 回答
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;
于 2009-06-17T21:43:46.650 回答
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);
于 2009-10-29T10:23:55.863 回答
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;        
}
于 2013-02-06T11:52:19.667 回答