コード例 #1
0
ファイル: _ide_helper.php プロジェクト: MPur/tp-facebook
 /**
  * Run an update statement against the database.
  *
  * @param string $query
  * @param array $bindings
  * @return int 
  * @static 
  */
 public static function update($query, $bindings = array())
 {
     //Method inherited from \Illuminate\Database\Connection
     return \Illuminate\Database\SQLiteConnection::update($query, $bindings);
 }