예제 #1
0
 /**
  * 提交事务
  */
 public function commit()
 {
     return $this->connectionWrite->commit();
 }
예제 #2
0
 /**
  * 提交事务并结束
  * @return mixed
  */
 public function commit()
 {
     return $this->_linkID->commit();
 }
예제 #3
0
파일: Model.php 프로젝트: v3u3i87/run_cli
 /**
  * 提交事务并结束
  * @return mixed
  */
 public function commit()
 {
     return $this->_db->commit();
 }
예제 #4
0
파일: Query.php 프로젝트: v3u3i87/upadd
 /**
  * 提交事务并结束
  * @return mixed
  */
 protected function commit()
 {
     return $this->_db->commit();
 }