ZF-11978: Support for Zend_Db_Expr in Zend_Db_Abstract::query()
Description
this query will NOT work in zend_db_adapter::query(); because it doesn't support Zend_Db_Expr
$db->query( 'SELECT * FROM table WHERE date > ?', new Zend_Db_Expr('NOW()') );
this query will NOT work in zend_db_adapter::query(); because it doesn't support Zend_Db_Expr
$db->query( 'SELECT * FROM table WHERE date > ?', new Zend_Db_Expr('NOW()') );
Comments
No comments to display