示例#1
0
文件: Insert.php 项目: opis/database
 /**
  * @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());
 }
示例#2
0
 public function into($table)
 {
     parent::into($table);
     return $this->connection->command((string) $this, $this->compiler->getParams());
 }