Esempio n. 1
0
 /**
  * @param   string  $table
  * 
  * @return  boolean
  */
 public function into(string $table)
 {
     parent::into($table);
     $compiler = $this->connection->getCompiler();
     return $this->connection->command($compiler->insert($this->sql), $compiler->getParams());
 }
Esempio n. 2
0
 /**
  * @param   string  $table
  * 
  * @return  boolean
  */
 public function into($table)
 {
     parent::into($table);
     return $this->connection->command((string) $this, $this->compiler->getParams());
 }