예제 #1
0
 function commit()
 {
     @fbsql_commit();
 }
예제 #2
0
파일: fbsql.php 프로젝트: roojs/pear
 /**
  * Commits the current transaction
  *
  * @return int  DB_OK on success.  A DB_Error object on failure.
  */
 function commit()
 {
     @fbsql_commit($this->connection);
 }
예제 #3
0
 public function transCommit()
 {
     fbsql_commit($this->connect);
     if (!fbsql_autocommit($this->connect)) {
         fbsql_autocommit($this->connect, true);
     }
     return true;
 }