예제 #1
0
파일: Model.php 프로젝트: v3u3i87/run_cli
 /**
  * 开启事务
  * @return mixed
  */
 public function begin()
 {
     return $this->_db->begin();
 }
예제 #2
0
 /**
  * 开启事务
  */
 public function begin()
 {
     return $this->connectionWrite->begin();
 }
예제 #3
0
파일: Query.php 프로젝트: v3u3i87/upadd
 /**
  * 开启事务
  * @return mixed
  */
 protected function begin()
 {
     return $this->_db->begin();
 }