コード例 #1
0
ファイル: Database.php プロジェクト: jwdeitch/components
 /**
  * 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'));
 }