_db->quoteIdentifier('product_name'); $select = $this->_db->select() ->from('zfproducts') ->where($product_name . ' = ?', "as'as:x"); return $select; } public function testSelectJoinCross() { $this->markTestSkipped($this->getDriver() . ' does not support CROSS JOIN'); } /** * ZF-2017: Test bind use of the Zend_Db_Select class. * @group ZF-2017 */ public function testSelectQueryWithBinds() { $this->markTestSkipped($this->getDriver() . ' does not support named parameters'); } public function getDriver() { return 'Db2'; } }