Zend_Db_Select burada () ve Zend_Db_Adapter quoteInto ()

2 Cevap php

Oldukça içine isteğe bağlı değer de dahil olmak üzere zaman, Zend_Db_Select ait () metodu vardır ve Zend_Db_Adapte en quoteInto () yöntemleri temelde aynı kadarıyla SQL kaçan olarak?

Diğer bir deyişle, eşit ve eşit güvenli alıntının bu iki parçalarıdır?

$select->where($this->getAdapter()->quoteInto('id = ?', 3));

$select->where(id = ?, 3);

Teşekkürler!

2 Cevap

Zend_Db_Select :: _where () Eğer Zend_Db_Select ikinci parametre olarak belirttiğiniz :: değer (ler) alıntı Zend_Db_Abstract :: quoteInto () kullanılarak nerede () sql dizesini montaj zaman.

Zend_Db_Select hattı 983 Gönderen:

/**
 * Internal function for creating the where clause
 *
 * @param string   $condition
 * @param mixed    $value  optional
 * @param string   $type   optional
 * @param boolean  $bool  true = AND, false = OR
 * @return string  clause
 */
protected function _where($condition, $value = null, $type = null, $bool = true)
{
    if (count($this->_parts[self::UNION])) {
        require_once 'Zend/Db/Select/Exception.php';
        throw new Zend_Db_Select_Exception("Invalid use of where clause with " . self::SQL_UNION);
    }

    if ($value !== null) {
        $condition = $this->_adapter->quoteInto($condition, $value, $type);
    }

    $cond = "";
    if ($this->_parts[self::WHERE]) {
        if ($bool === true) {
            $cond = self::SQL_AND . ' ';
        } else {
            $cond = self::SQL_OR . ' ';
        }
    }

    return $cond . "($condition)";
}

Ben burada bu zaten belirterek gelmez bunu anlamak gibi gereksiz olurdu.