예제 #1
0
파일: db.php 프로젝트: noci2012/owncloud
 /**
  * Commit the database changes done during a transaction that is in progress
  */
 public static function commit()
 {
     self::connect();
     if (!self::$inTransaction) {
         return false;
     }
     self::$connection->commit();
     self::$inTransaction = false;
 }