免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1479 | 回复: 0
打印 上一主题 下一主题

[数据库] 增强phplib里的mysql类,事务处理(MYSQL5) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-12-24 23:14 |只看该作者 |倒序浏览
在原类里加入
  /* 添加sql描述  */

  function Add_SQL($Query_String)
        {
          $this->tCount++;
          $this->aSql[$this->tCount] = $Query_String;
        }

  /* 执行一个SQL语句 有错误返回0,没错误返回1 */
  function db_ExecuteSQL($Query_String)
        {
          if( $Query_String == "")
                {
                  return 0;
                }

          if (!$this->connect()) {
                        return 0; /* we already complained in connect() about that. */
                };

          if ($this->Query_ID) {
                  $this->free();
                }

         $this->Query_ID = @mysql_query($Query_String,$this->Link_ID);

          if (!$this->Query_ID) {
                  return 0;
                }else{
                  return 1;
                }

               
        }

  /* 执行一个事务处理 */
  function Execute()
        {
          /* 执行事务处理开始 */
          if ($this->db_ExecuteSQL("START TRANSACTION")) {

                  for ($i=1; $i<=count($this->aSql); $i++) {
                          $res = $this->db_ExecuteSQL($this->aSql[$i]);

                          if (!$res) {
                                        break;
                                }
                  } //end for

                  if ($res){
                                $res = $this->db_ExecuteSQL("COMMIT");
                                return true;
                        }
                        else {
                                $res = $this->db_ExecuteSQL("ROLLBACK");
                                return false;
                        }

          }//end if tran
        }

使用的时候$DB->Add_SQL("sql语句1");
$DB->Add_SQL("sql语句2");
$DB->Add_SQL("sql语句3");
$DB->Add_SQL("sql语句4");

if($DB->Execute())
{
    echo "操作成功!";
}else{
    echo "操作失败,并且回滚";
}

[ 本帖最后由 HonestQiao 于 2005-12-25 09:16 编辑 ]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP