Example #1
0
 public function encoding($enc)
 {
     if (empty($enc)) {
         throw new Exception\QueryBuilderException('Input value cannot be empty!');
     }
     Configuration::validateOutputEncoding($enc);
     $this->options['e'] = ' -e ' . $enc;
     return $this;
 }