mysql仿asp的数据库操作类_Mysql

<?php 
class MySQLDB 
  { 
    //MYSQL数据库操作类 
    //作者:熊毅 
    //版本:2.0(发行版)  
      查询数据时Query后可以用GetValue得到相应的值,既可以是字段名也可以是已0开始的序号 
插入新值,先用AddNew后使用SetValue相应的字段名或序号和字段值,在用Update添加 
编辑时用Edit指定编辑记录的条件在使用SetValue,最后用Update添加 
在类使用过程中,sTName记录上次使用的数据库表名,当指定后可以直接使用,以后的操作默认在该表  

    //可以自由转载,修改请通知我scxy78@yeah.net 
    //转载请保留以上声明 

        //上进行操作,当然也可以每次指定特殊的表进行操作 
    //nErr指示是否操作出错,sErr记录最后一次出错的错误代码,记录了明确的有哪个函数引起的错误 
    //错误之处请指正 
    //欢迎来信与我交流编程经验:scxy78@yeah.net 
    //我的CSDN:用户号:scxy;呢称:小熊,请多关照 

    //可以自由转载,修改请通知我scxy78@yeah.net 
    //转载请保留以上声明 

    var $host="localhost";        //主机名 
    var $user="boot";           //用户名 
    var $password="oaserver";   //用户密码 
    var $linkid;                 //连接值 
    var $dbid;                   //数据库选择的结果值 
    var $sTName;                  //指定当前操作的数据库表 
    var $sErr;                   //错误代码 
    var $nErr;                   //指示是否有错误存在,0无错误,1有错误 
    var $nResult;                //查询结果值 
    var $aFName;                 //保存FieldsName的数组 
    var $nRows;                  //查询结果中的行数 
    var $nCols;                  //查询结果中的列数 
    var $aNew;                   //添加在AddNew函数后的数据,以数组形式保存 
    var $NewEdit;                  //判断当前是否在进行添加操作,0表示没有,1表示在进行添加,2表示编辑 
    var $sEditCon;               //指定编辑记录的条件 
    var $nOffset;                //记录偏移量 
    var $EOF;                     //标记是否到记录集尾 
    var $sSQL;                    //最后一条执行的SQL语句 

    //执行Update所要用到的全局变量 
    var $sName;                   //字段名 
    var $sValue;                  //字段值AddNew时用 
    var $sEdit;                   //字段值Edit时用 

    function Initialize() 
    { 
      $this->nErr=0; 
      $this->NewEdit=0; 
      $this->nResult=-1; 
      $this->nCols=0; 
      $this->nRows=0; 
      $this->nOffset=0; 
      $this->EOF=true; 
      $this->sName=""; 
      $this->sValue="#@!"; 
      $this->sEdit="#@!"; 
      unset($this->aFName); 
      unset($this->aNew); 
    } 
    function MySqlDB($TableName="",$database="slt")  //构造函数 
    { 
      $this->Initialize(); 
      $this->sTName=$TableName; 
      $this->linkid=mysql_connect($host,$user,$password); 
      if(!$this->linkid) 
      { 
        $this->nErr=1; 
        $this->sErr="MySqlDB:数据库连接出错,请启动服务!"; 
        return; 
      } 
      $this->dbid=mysql_select_db($database); 
      if(!$this->dbid) 
      { 
        $this->nErr=1; 
        $this->sErr="MySqlDB:选择的数据库".$database."不存在!"; 
        return; 
      } 
    } 

    function IsEmpty($Value) 
    { 
            if(is_string($Value)&∅($Value)) 
               return true; 
            return false; 
    } 

    function Destroy()          //数据清除处理 
    { 
      mysql_query("commit"); 
      mysql_close(); 
    } 

    function PrintErr() 
    { 
      if($this->nErr==1) 
      { 
        echo($this->sErr."<br><br>"); 
      } 
      else 
      { 
        echo("没有错误<br><br>"); 
      } 
    } 

        function Execute($SQL)  //直接执行SQL语句 
          { 
                if(empty($SQL)) 
                  { 
                        $this->nErr=1; 
                        $this->sErr="Execute:执行语句不能为空!"; 
                        return false; 
                  } 
                 $this->sSQL=$SQL; 
                  if(!mysql_query($SQL)) 
                  { 
                          $this->nErr=1; 
                          $this->sErr="Execute:SQL语句:".$SQL."<br>MySql错误:".mysql_error(); 
                          return false; 
                  } 
                  return true; 
          } 

    function Query($TableName="",$SQL="*",$Condition="",$Order="",$Sequenc="") //在数据库里执行查询 
    { 
      $this->Initialize(); 
      if(!empty($TableName)) 
        $this->sTName=$TableName; 
      $strSQL="select ".$SQL." from ".$this->sTName; 
      if(!empty($Condition)) 
        $strSQL=$strSQL." where ".$Condition; 
      if(!empty($Order)) 
        $strSQL=$strSQL." order by ".$Order; 
      if(!empty($Sequenc)) 
        $strSQL=$strSQL." ".$Sequenc; 
          $this->sSQL=$strSQL; 
      if(!$this->nResult=mysql_query($strSQL)) 
      { 
        $this->nErr=1; 
        $this->sErr="Query:SQL语句:".$strSQL."<br>MySql错误:".mysql_error()."<br>"; 
        return; 
      } 
      $this->nOffset=0; 
      $this->nRows=mysql_num_rows($this->nResult); 
      $this->nCols=mysql_num_fields($this->nResult); 
          if($this->nRows>0) 
                  $this->EOF=false; 
          else 
                  $this->EOF=true; 
      unset($this->aFName); 
      $this->aFName=array(); 
      for($i=0;$i<$this->nCols;$i++) 
         $this->aFName[$i]=strtolower(mysql_field_name($this->nResult,$i)); 
    } 

        function MoveNext() 
          { 
                if($this->EOF) 
                  { 
                        $this->nErr=1; 
                        $this->sErr="MoveNext:已经移到记录集末尾!"; 
                        return; 
                  } 
                $this->nOffset++; 
                if($this->nOffset>=$this->nRows) 
                        $this->EOF=true; 
          } 

     function MoveTo($Offset) 
     { 
        if(empty($Offset)) 
        { 
          $this->nErr=1; 
          $this->sErr="MoveTo:必须指定偏移量! "; 
          return; 
        } 

        if(!$this->nResult) 
        { 
          $this->nErr=1; 
          $this->sErr="MoveTo:请先执行查询:Query"; 
          return; 
        } 
        $this->nOffset=$Offset; 
     } 

    //得到指定行的指定列的值,返回字符串 
    //如果不指定Offset将取得下一行的值 
    //如果不指定nFields将取得该行的值,并已数组形式返回 
    function GetValue($nFields=-1,$Offset=-1) 
    { 
      if($this->nResult==-1) 
      { 
        $this->nErr=1; 
        $this->sErr="GetValue:请先执行Query()函数!"; 
        return; 
      } 
      if($Offset>-1) 
      { 
                $this->nOffset=$Offset; 
        if($this->nOffset>=$this->nRows) 
        { 
          $this->nErr=1; 
          $this->sErr="GetValue:所要求的偏移量太大,无法达到!"; 
          return; 
        } 
      } 
           if(!@mysql_data_seek($this->nResult,$this->nOffset)) 
                { 
                  $this->nErr=1; 
                  $this->sErr="GetValue:请求不存在的记录!"; 
                  return; 
                } 
      $aResult=mysql_fetch_row($this->nResult); 
      if(is_int($nFields)&&$nFields>-1) 
      { 
        if($nFileds>$this->nCols) 
        { 
          $this->nErr=1; 
          $this->sErr="GetValue:所请求的列值大于实际的列值!"; 
          return; 
        } 
        return $aResult[$nFields]; 
      } 
          if(is_string($nFields)) 
          { 
                $nFields=strtolower($nFields); 
            for($i=0;$i<$this->nCols;$i++) 
                { 
                  if($this->aFName[$i]==$nFields) 
                          break; 
                } 
                if($i==$this->nCols) 
                  { 
                        $this->nErr=1; 
                        $this->sErr="GetValue:所请求的列不存在,请仔细检查!"; 
                        return; 
                  } 
                  return $aResult[$i]; 
          } 
      return $aResult; 
    } 

    function AddNew($TableName="")  //标志开始添加数据 
    { 
      $this->Initialize(); 
      if(!empty($TableName)) 
        $this->sTName=$TableName; 
      if($this->NewEdit>0) 
      { 
        $this->nErr=1; 
        $this->sErr="AddNew:你正在对数据库进行添加或更新操作!"; 
        return; 
      } 
      if(empty($this->sTName)) 
      { 
        $this->nErr=1; 
        $this->sErr="AddNew:想要添加的数据库表为空,可以在构造时指定,也可在AddNew()时指定!"; 
        return; 
      } 
      unset($this->aNew); 
      $this->aNew=array(); 
      $this->NewEdit=1; 
      $strSQL="select * from ".$this->sTName; 
          $this->sSQL=$strSQL; 
      if(!$this->nResult=mysql_query($strSQL)) 
      { 
        $this->nErr=1; 
        $this->sErr="AddNew:SQL语句:".strSQL."<br><br>MySql错误:".mysql_error(); 
        return; 
      } 
      $this->nCols=mysql_num_fields($this->nResult); 
      unset($this->aFName); 
      $this->aFName=array(); 
      for($i=0;$i<$this->nCols;$i++) 
         $this->aFName[$i]=strtolower(mysql_field_name($this->nResult,$i)); 
    } 

    function Edit($Condition="",$TableName="")  //对指定数据库表进行编辑 
    { 
                  $this->Initialize(); 
                  if(!empty($TableName)) 
                          $this->sTName=$TableName; 
                  $this->sEditCon=$Condition; 
                  if(empty($this->sTName)) 
                  { 
                          $this->nErr=1; 
                          $this->sErr="Edit:在编辑前请先指定数据库表!"; 
                          return; 
                  } 
                  unset($this->aNew); 
                  $this->aNew=array(); 
                  $this->NewEdit=2; 
                  $strSQL="select * from ".$this->sTName; 
                  $this->sSQL=$strSQL; 
                  if(!$this->nResult=mysql_query($strSQL)) 
          { 
             $this->nErr=1; 
             $this->sErr="Edit:SQL语句:".strSQL."<br><br>MySql错误:".mysql_error(); 
             return; 
          } 
          $this->nCols=mysql_num_fields($this->nResult); 
          unset($this->aFName); 
          $this->aFName=array(); 
          for($i=0;$i<$this->nCols;$i++) 
             $this->aFName[$i]=strtolower(mysql_field_name($this->nResult,$i)); 
    } 

    function SetValue($Index,$Value) //指定数据,跟在AddNew后执行; 
    { 
             if($this->NewEdit==0) 
             { 
                $this->nErr=1; 
                $this->sErr="SetValue:请先执行AddNew()或者Edit()!"; 
                return; 
             } 
             if(is_int($Index)) 
             { 
                 if($Index<0||$Index>$this->nCols) 
                 { 
                    $this->nErr=1; 
                    $this->sErr="SetValue:插入不存在的列值!"; 
                    return; 
                 } 
                 $this->aNew[$Index]=$Value; 
                 $tmpIn=$Index; 
             } 
             elseif(is_string($Index)) 
             { 
                $Index=strtolower($Index); 
                for($i=0;$i<$this->nCols;$i++) 
                { 
                    if($this->aFName[$i]==$Index) 
                       break; 
                } 
                if($i==$this->nCols) 
                { 
                    $this->nErr=1; 
                    $this->sErr="SetValue:插入不存在的列值!"; 
                    return; 
                 } 
                 $this->aNew[$i]=$Value; 
                 $tmpIn=$i; 
             } 
                 if(!empty($this->sName)) 
                    $this->sName.=","; 
                 $this->sName.=$this->aFName[$tmpIn]; 
                 //根据当前字段的类型生成相应的新值 
                 if($this->sValue!="#@!") 
                    $this->sValue.=","; 
                 else 
                    $this->sValue=""; 
                 $ftype=@mysql_field_type($this->nResult,$i); 
                 //echo($ftype.",".$this->aNew[$i].",".$i.":".$sValue."<br>"); 

                 switch($ftype) 
                 { 
                  case "string": 
                  case "date": 
                  case "datetime": 
                        $this->sValue.=""".$this->aNew[$tmpIn]."""; 
                        $this->sEdit=""".$this->aNew[$tmpIn]."""; 
                        break; 
                  case "int": 
                  case "unknown": 
                       $this->sValue.=$this->aNew[$tmpIn]; 
                       $this->sEdit=$this->aNew[$tmpIn]; 
                       break; 
                  default: 
                       $this->nErr=1; 
                       $this->sErr="Update:字段名为".$this->aFName[$tmpIn]."的".$ftype."类型目前版本不支持,请用别的方法添加数据!"; 
                       return; 
                 } 

                 if($this->NewEdit==2) 
                    $this->sName.="=".$this->sEdit; 
      } 

    function Update()    //存储新值到数据库 
    { 
      $strSQL=""; 

      if($this->NewEdit==0) 
      { 
        $this->nErr=1; 
        $this->sErr="Update:请先执行AddNew()或者Edit(),再用SetValue()添加值!"; 
        return; 
      } 

      if(empty($this->sValue)) 
      { 
        $this->nErr=1; 
        $this->sErr="Update:在数据为空的情况下,不能添加或修改数据!"; 
        return; 
      } 

      switch($this->NewEdit) 
      { 
       case 1:       //添加 
            $strSQL="insert into "; 
            $strSQL.=$this->sTName; 
            $strSQL.=" (".$this->sName.") "; 
            $strSQL.="values (".$this->sValue.")"; 
            break; 
      case 2:          //修改 
            $strSQL="update "; 
            $strSQL.=$this->sTName; 
            $strSQL.=" set "; 
            $strSQL.=$this->sName; 
            if(!empty($this->sEditCon)) 
                $strSQL.=" where ".$this->sEditCon; 
            break; 
      default: 
           $this->nErr=1; 
           $this->sErr="Update:Update()生成SQL语句出错,请检查!"; 
           return; 
      } 

      $this->sSQL=$strSQL; 
      if(!$this->nResult=mysql_query($strSQL)) 
      { 
        $this->nErr=1; 
        $this->sErr="Update:SQL语句:".$strSQL."<br><br>MySql错误:".mysql_error(); 
        return; 
      } 
       //echo($this->sSQL."<br>"); 
      //作清理工作 
      $this->NewEdit=0; 
      unset($this->aNew); 
      mysql_query("commit"); 
    } 
  } 
?>

时间: 2024-09-20 06:24:50

mysql仿asp的数据库操作类_Mysql的相关文章

ASP通用数据库操作类源代码

<%'=========================================================================='文件名称:clsDbCtrl.asp'功 能:数据库操作类'作 者:coldstone (coldstone[在]qq.com)'程序版本:v1.0.5'完成时间:2005.09.23'修改时间:2007.10.30'版权声明:可以在任意作品中使用本程序代码,但请保留此版权信息.'          如果你修改了程序中的代码并得到更好的应用,

asp.net数据库操作类代码

 代码如下 复制代码 using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; usi

asp数据库操作类

<%'=========================================================================='文件名称:clsDbCtrl.asp'功 能:数据库操作类'作 者:coldstone (coldstone[在]qq.com)'程序版本:v1.0.5'完成时间:2005.09.23'修改时间:2007.10.30'版权声明:可以在任意作品中使用本程序代码,但请保留此版权信息.' 如果你修改了程序中的代码并得到更好的应用,请发送一份给我,谢

最好用的PHP数据库操作类-ezSQL

 ezSQL是一个非常好用的PHP数据库操作类.著名的开源博客WordPress的数据库操作就使用了ezSQL的MySQL部分.该数据库操作类支持几乎所有主流的数据库,如:PHP-PDO, mySQL, Oracle, InterBase/FireBird, PostgreSQL, SQLite以及MS-SQL等.ezSQL具有很强的调试功能,可以快速地查看SQL代码的执行情况.使用ezSQL,可以为我们节省开发时间.简化代码并提高运行效率. ezSQL的优点就不用多说了,它小巧.快速.简单.易

一个ASP.NET的MYSQL的数据库操作类自己封装的_实用技巧

/** * 类说明:对MYSQL数据库的操作类 */ using System; using System.Data; using MySql.Data.MySqlClient; namespace Niunan.BYLW.Utility { /// <summary>对MYSQL数据库的操作类 /// /// </summary> public class MYSQLHelper { private MySqlConnection conn = null; private MyS

自己封装的ASP.NET的MYSQL的数据库操作类

代码 /** * 作者:牛腩 * 创建时间:2010年3月7日17时35分 * 类说明:对MYSQL数据库的操作类 */ using System;using System.Data;using MySql.Data.MySqlClient; namespace Niunan.BYLW.Utility{    /// <summary>对MYSQL数据库的操作类    ///     /// </summary>    public class MYSQLHelper    {  

[原创] EasyASP v1.5简化ASP开发,包含数据库操作类

EasyASP v1.5简化ASP开发,包含数据库操作类 EasyASP是一个方便快速开发ASP的类,其中包含了一个数据库控制类(原clsDbCtrl.asp,对原代码作了优化和修改,包含对数据库的各类操作及存储过程的调用,全部封装在Easp.db中,使用起来会更方便,调用也更简单).而Easp类中提供了大量实用的ASP通用过程及方法,可以简化大部分的ASP操作.目前只提供了VBScript版,JScript版将来可能会提供.详细说明请下载帮助手册,里面有非常详细的使用方法说明及源码范例. 源码

简单快速有趣的MySQL数据库操作类:SimpleDB

mysql|数据|数据库 自己写着玩的,代码没有测试,不过觉得思路不错,如果能够加上部分异常处理的功能,应该比较帅了,支持PHP4/PHP5,恩,虽然没有ADOdb或者PEAR::DB强,不错一般应用应该不错,恩. 喜欢的就自己拿去用吧,自己随便改,呵呵,也欢迎提意见.(注释遵循PHPDoc的标准,便于生成手册)  注意:代码未经测试,出现问题可要自己负责哇,呵呵.         <?//==========================================// 文件: Simp

ASP.NET[C#]的ACCESS数据库操作类

access|asp.net|数据|数据库 ASP.NET[C#]的ACCESS数据库操作类       //网上很多都是操作SQL SER 的,整理了一下,不是很完善,但不影响使用,呵呵--       //private string datapatch = ConfigurationSettings.AppSettings["acessconn"];//数据库地址                                            private string