I had one problem with zend validate db, when I send him some value he checks
with this
WHERE value = 'value', well that would return Value and value and vAlUe
etc...

So i modifyed Zend/Validate/Db/Abstract.php, line 116
$select->from($this->_table)
               ->columns($this->_field)
               ->where('binary '.
$this->_adapter->quoteIdentifier($this->_field).' = ?', $value);

As you can see I added binary word to where statement, and I want to ask is
there another way to do this, not this hack way?
-- 
View this message in context: 
http://www.nabble.com/Zend-db-validate-correction-tp23692735p23692735.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to