示例#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();
 }