示例#1
0
 /**
  * Get instance of InsertBuilder associated with current Database.
  *
  * @param string $table Table where values should be inserted to.
  * @return InsertQuery
  */
 public function insert($table = '')
 {
     return $this->driver->insertBuilder($this, compact('table'));
 }