从另一个表更新zend框架

时间:2011-07-23 02:39:30

标签: php zend-framework zend-db-table

我在Zend Framework中得到的模型扩展了Zend_Db_Table $this->_name = 'tableA'

我做insert()update()delete()的时间非常长。如何根据另一个表的值来实现更新主表..?

在原始SQL查询中,它可能如下所示:

UPDATE tableA SET fieldA = tableB.newValue
FROM tableB
WHERE tableA.someValue = tableB.someIndex // it will be complicate manipulation
  AND tableA.index = .....

我如何为update()方法构建参数:

parent::update( $data, $where );

2 个答案:

答案 0 :(得分:1)

如何为parent::update()方法构建参数以获取最终更新查询,没有可能的组合。原因是因为Db表update方法只是将$data$where变量传递给Db适配器的update方法。适配器的update方法没有留下附加其他信息的余地。 你根本无法破解参数

如果您不能将表关系与级联更新一起使用。您最好的选择是扩展Db适配器并创建一种新方法来处理这些类型的更新。这应该有用。

/** 
 * Add this method to you custom adapter
 * Direct copy of update method with integration of $from
 * @see Zend_Db_Adapter_Abstract::update
 **/
public function updateFrom($table, $from, array $bind, $where = '')
{
    /**
     * Build "col = ?" pairs for the statement,
     * except for Zend_Db_Expr which is treated literally.
     */
    $set = array();
    $i = 0;
    foreach ($bind as $col => $val) {
        if ($val instanceof Zend_Db_Expr) {
            $val = $val->__toString();
            unset($bind[$col]);
        } else {
            if ($this->supportsParameters('positional')) {
                $val = '?';
            } else {
                if ($this->supportsParameters('named')) {
                    unset($bind[$col]);
                    $bind[':col'.$i] = $val;
                    $val = ':col'.$i;
                    $i++;
                } else {
                    /** @see Zend_Db_Adapter_Exception */
                    require_once 'Zend/Db/Adapter/Exception.php';
                    throw new Zend_Db_Adapter_Exception(get_class($this) ." doesn't support positional or named binding");
                }
            }
        }
        // Reason #1 you can't hack into $data array to pass reference to a table
        $set[] = $this->quoteIdentifier($col, true) . ' = ' . $val;
    }

    $where = $this->_whereExpr($where);

    /**
     * Build the UPDATE statement
     */
    $sql = "UPDATE "
         . $this->quoteIdentifier($table, true)
         . ' SET ' . implode(', ', $set)
         . ' FROM ' . $this->quoteIdentifier($from, true) // My only edit
         . (($where) ? " WHERE $where" : ''); // Reason #2 no room in where clause

    /**
     * Execute the statement and return the number of affected rows
     */
    if ($this->supportsParameters('positional')) {
        $stmt = $this->query($sql, array_values($bind));
    } else {
        $stmt = $this->query($sql, $bind);
    }
    $result = $stmt->rowCount();
    return $result;
}

/** Add this to your extended Zend_Db_Table **/
public function update(array $data, $where)
{
    $tableSpec = ($this->_schema ? $this->_schema . '.' : '') . $this->_name;
    $from      = 'schema.name'; // Get from table name 
    return $this->_db->updateFrom($tableSpec, $from, $data, $where);
}

注意:我没有对此进行测试,但我相信它会按预期工作。如果您有任何问题,请告诉我。因为我复制了适配器的更新方法,所以我继续说明了为什么你不能破解这些参数的原因。

修改 我差点忘了提。每个适配器都是唯一的,因此您必须检查适配器更新方法。我刚刚从Zend_Db_Abstract复制了。

答案 1 :(得分:0)