quoteColumnName() public method

Quotes a column name for use in a query.
public quoteColumnName ( string $name ) : string
$name string column name
return string the properly quoted column name
Example #1
0
 /**
  * Quotes a column name for use in a query.
  * @param string $name column name
  * @return string the properly quoted column name
  */
 public function quoteColumnName($name)
 {
     return parent::quoteColumnName($name, '`', '`');
 }