示例#1
0
 /**
  * Set Query to multiple statement
  * on next call this method will attach or append new query.
  *
  * @param string $queries
  */
 public function setQuery($queries)
 {
     if ($this->executed) {
         $this->clear();
     }
     $this->query->multiple()->setQuery($queries);
     return $this;
 }