Beispiel #1
0
 /**
  * Quote a table identifier and alias.
  *
  * @param string|array|Zend_Db_Expr $ident The identifier or expression.
  * @param string                    $alias An alias for the table.
  * @param boolean                   $auto  (optional) If true, heed the AUTO_QUOTE_IDENTIFIERS config option.
  * @return string The quoted identifier and alias.
  */
 public function quoteTableAs($ident, $alias = null, $auto = false)
 {
     return $this->_adapter->quoteTableAs($ident, $alias, $auto);
 }