예제 #1
0
 protected function quote($label)
 {
     if (is_a($label, 'SQLMakerStatement')) {
         return $label->statement();
     }
     return SQLMakerUtil::quote_identifier($label, $this->quote_char, $this->name_sep);
 }
예제 #2
0
 protected function quote($label)
 {
     return SQLMakerUtil::quote_identifier($label, $this->quote_char, $this->name_sep);
 }
예제 #3
0
 protected function quote($label)
 {
     if (is_a($label, 'SQLMakerRawString')) {
         return $label->raw_string();
     }
     return SQLMakerUtil::quote_identifier($label, $this->quote_char, $this->name_sep);
 }