thinkphp,oracle,支持事务

Thinkphp对Oracle的支持简直弱爆,只做到了基本的操作,就连事务都不支持。今天来手动改一改DbOracle.class.php,让它稍微好用一些吧。

首先是insert。原来的insert应该没有什么问题,但实际项目中更多的是需要在插入的时候遇到已存在的记录则进行更新。于是,利用Oracle中的MERGE INTO来实现这一点。

 
  
  1. public function insert($data, $options = array(), $replace = false)
  2. {
  3. if (!$replace) {
  4. return parent::insert($data, $options, $replace);
  5. }
  6.  
  7. $values = $fields = array();
  8. $this->model = $options['model'];
  9.  
  10. $sql_merge = 'MERGE INTO ' . $this->parseTable($options['table']) .
  11. ' using (select 1 from dual) ' .
  12. ' ON (' . $this->parseValue($data[$options['marge_key']]) . ' is not null and ' . $this->parseValue($data[$options['marge_key']]) . ' = ' . $options['marge_key'] . ')';
  13.  
  14. //insert
  15. foreach ($data as $key => $val) {
  16. //主键值为空时,不插入主键
  17. if ($this->parseKey($key) == $this->parseKey($options['marge_key'])
  18. && $val == null
  19. ) {
  20.  
  21. } elseif (is_array($val) && 'exp' == $val[0]) {
  22. $fields[] = $this->parseKey($key);
  23. $values[] = $val[1];
  24. } elseif (is_scalar($val) || is_null(($val))) { // 过滤非标量数据
  25. $fields[] = $this->parseKey($key);
  26. if (C('DB_BIND_PARAM') && 0 !== strpos($val, ':')) {
  27. $name = md5($key);
  28. $values[] = ':' . $name;
  29. $this->bindParam($name, $val);
  30. } else {
  31. $values[] = $this->parseValue($val);
  32. }
  33. }
  34. }
  35. $sql_insert = 'INSERT (' . implode(',', $fields) . ') VALUES (' . implode(',', $values) . ')';
  36.  
  37. //update
  38. if (isset($data[$this->parseKey($options['marge_key'])])
  39. || $data[$this->parseKey($options['marge_key'])] == null
  40. ) {
  41. unset($data[$this->parseKey($options['marge_key'])]);
  42. }
  43. $sql_update = 'UPDATE '
  44. . $this->parseSet($data)
  45. . $this->parseWhere(!empty($options['where']) ? $options['where'] : '')
  46. . $this->parseOrder(!empty($options['order']) ? $options['order'] : '')
  47. . $this->parseLimit(!empty($options['limit']) ? $options['limit'] : '');
  48.  
  49. $sql = $sql_merge . ' WHEN MATCHED THEN ' . $sql_update . ' WHEN NOT MATCHED THEN ' . $sql_insert;
  50. return $this->execute($sql, $this->parseBind(!empty($options['bind']) ? $options['bind'] : array()));
  51. }
  52.  

不支持事务是Thinkphp连接Oracle时的另一个问题,框架作者似乎已经做过适配,但是应该是没有测试,留下一堆bug。DbOracle.class.php中已经有了startTrans,commit,rollback等,稍作修改即可。

Thinkphp对数据库的所有操作最终都是汇集到query或execute上来执行,但这两个函数里放了一句$this->mode = OCI_COMMIT_ON_SUCCESS;活生生的把事务扼杀了,所以,这里先把两个函数里的这句注释掉。

然后,惊人得发现execute()中调用oci_execute时根本没有传入mode!前面辛辛苦苦改mode又是何苦,果断加上oci_execute($stmt, $this->mode)。

接下来才是让事务生效的重头戏。在事务的几个开关函数中加入对mode的修改,在startTrans()中,将mode设为OCI_DEFAULT,commit和rollback中将将mode设为改回OCI_COMMIT_ON_SUCCESS。这三个函数大概就是这样子的:

 
  
  1. /**
  2. * 启动事务
  3. * @access public
  4. * @return void
  5. */
  6. public function startTrans() {
  7. $this->initConnect(true);
  8. if ( !$this->_linkID ) return false;
  9. //数据rollback 支持
  10. if ($this->transTimes == 0) {
  11. $this->mode = OCI_DEFAULT;
  12. }
  13. $this->transTimes++;
  14. return ;
  15. }
  16.  
  17. /**
  18. * 用于非自动提交状态下面的查询提交
  19. * @access public
  20. * @return boolen
  21. */
  22. public function commit(){
  23. if ($this->transTimes > 0) {
  24. $result = oci_commit($this->_linkID);
  25. if(!$result){
  26. $this->error();
  27. return false;
  28. }
  29. $this->mode = OCI_COMMIT_ON_SUCCESS;//陈宣亦 2014.11.09 14:07
  30. $this->transTimes = 0;
  31. }
  32. return true;
  33. }
  34.  
  35. /**
  36. * 事务回滚
  37. * @access public
  38. * @return boolen
  39. */
  40. public function rollback(){
  41. if ($this->transTimes > 0) {
  42. $result = oci_rollback($this->_linkID);
  43. if(!$result){
  44. $this->error();
  45. return false;
  46. }
  47. $this->mode = OCI_COMMIT_ON_SUCCESS;//陈宣亦 2014.11.09 14:07
  48. $this->transTimes = 0;
  49. }
  50. return true;
  51. }

你可能感兴趣的:(thinkphp,oracle,支持事务)