Esempio n. 1
0
 /**
  * @see RedBean_QueryWriter::esc
  */
 public function esc($dbStructure, $noQuotes = FALSE)
 {
     return parent::esc(strtolower($dbStructure), $noQuotes);
 }
Esempio n. 2
0
 /**
  * Do everything that needs to be done to format a column name.
  *
  * @param string $name of column
  *
  * @return string $column name
  */
 public function esc($c, $q = FALSE)
 {
     return parent::esc(!$q ? strtoupper($c) : $c, $q);
 }