最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

mysql仿asp的數(shù)據(jù)庫操作類

 更新時(shí)間:2008年04月06日 01:22:12   投稿:mdxy-dxy  
使用說明: 該類完全按照ADO的習(xí)慣書寫的,用過ASP的人都覺得ASP連接數(shù)據(jù)庫比PHP好用(這是我的感覺), 但PHP得一個(gè)一個(gè)API地寫,挺累,該類做了完全的封裝 創(chuàng)建類的實(shí)例時(shí)可以指定一個(gè)數(shù)據(jù)庫表和選擇的數(shù)據(jù)庫,如:new MySQLDB("table","database");
<?php 
class MySQLDB 
 { 
  //MYSQL數(shù)據(jù)庫操作類 
  //作者:熊毅 
  //版本:2.0(發(fā)行版) 
   查詢數(shù)據(jù)時(shí)Query后可以用GetValue得到相應(yīng)的值,既可以是字段名也可以是已0開始的序號 
插入新值,先用AddNew后使用SetValue相應(yīng)的字段名或序號和字段值,在用Update添加 
編輯時(shí)用Edit指定編輯記錄的條件在使用SetValue,最后用Update添加 
在類使用過程中,sTName記錄上次使用的數(shù)據(jù)庫表名,當(dāng)指定后可以直接使用,以后的操作默認(rèn)在該表 

  //可以自由轉(zhuǎn)載,修改請通知我scxy78@yeah.net 
  //轉(zhuǎn)載請保留以上聲明 
   
    //上進(jìn)行操作,當(dāng)然也可以每次指定特殊的表進(jìn)行操作 
  //nErr指示是否操作出錯(cuò),sErr記錄最后一次出錯(cuò)的錯(cuò)誤代碼,記錄了明確的有哪個(gè)函數(shù)引起的錯(cuò)誤 
  //錯(cuò)誤之處請指正 
  //歡迎來信與我交流編程經(jīng)驗(yàn):scxy78@yeah.net 
  //我的CSDN:用戶號:scxy;呢稱:小熊,請多關(guān)照 
   
  //可以自由轉(zhuǎn)載,修改請通知我scxy78@yeah.net 
  //轉(zhuǎn)載請保留以上聲明 

  var $host="localhost";    //主機(jī)名 
  var $user="boot";      //用戶名 
  var $password="oaserver";  //用戶密碼 
  var $linkid;         //連接值 
  var $dbid;          //數(shù)據(jù)庫選擇的結(jié)果值 
  var $sTName;         //指定當(dāng)前操作的數(shù)據(jù)庫表 
  var $sErr;          //錯(cuò)誤代碼 
  var $nErr;          //指示是否有錯(cuò)誤存在,0無錯(cuò)誤,1有錯(cuò)誤 
  var $nResult;        //查詢結(jié)果值 
  var $aFName;         //保存FieldsName的數(shù)組 
  var $nRows;         //查詢結(jié)果中的行數(shù) 
  var $nCols;         //查詢結(jié)果中的列數(shù) 
  var $aNew;          //添加在AddNew函數(shù)后的數(shù)據(jù),以數(shù)組形式保存 
  var $NewEdit;         //判斷當(dāng)前是否在進(jìn)行添加操作,0表示沒有,1表示在進(jìn)行添加,2表示編輯 
  var $sEditCon;        //指定編輯記錄的條件 
  var $nOffset;        //記錄偏移量 
  var $EOF;           //標(biāo)記是否到記錄集尾 
  var $sSQL;          //最后一條執(zhí)行的SQL語句 

  //執(zhí)行Update所要用到的全局變量 
  var $sName;          //字段名 
  var $sValue;         //字段值A(chǔ)ddNew時(shí)用 
  var $sEdit;          //字段值Edit時(shí)用 

  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") //構(gòu)造函數(shù) 
  { 
   $this->Initialize(); 
   $this->sTName=$TableName; 
   $this->linkid=mysql_connect($host,$user,$password); 
   if(!$this->linkid) 
   { 
    $this->nErr=1; 
    $this->sErr="MySqlDB:數(shù)據(jù)庫連接出錯(cuò),請啟動(dòng)服務(wù)!"; 
    return; 
   } 
   $this->dbid=mysql_select_db($database); 
   if(!$this->dbid) 
   { 
    $this->nErr=1; 
    $this->sErr="MySqlDB:選擇的數(shù)據(jù)庫".$database."不存在!"; 
    return; 
   } 
  } 

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

  function Destroy()     //數(shù)據(jù)清除處理 
  { 
   mysql_query("commit"); 
   mysql_close(); 
  } 

  function PrintErr() 
  { 
   if($this->nErr==1) 
   { 
    echo($this->sErr."<br><br>"); 
   } 
   else 
   { 
    echo("沒有錯(cuò)誤<br><br>"); 
   } 
  } 

    function Execute($SQL) //直接執(zhí)行SQL語句 
     { 
        if(empty($SQL)) 
         { 
            $this->nErr=1; 
            $this->sErr="Execute:執(zhí)行語句不能為空!"; 
            return false; 
         } 
         $this->sSQL=$SQL; 
         if(!mysql_query($SQL)) 
         { 
             $this->nErr=1; 
             $this->sErr="Execute:SQL語句:".$SQL."<br>MySql錯(cuò)誤:".mysql_error(); 
             return false; 
         } 
         return true; 
     } 

  function Query($TableName="",$SQL="*",$Condition="",$Order="",$Sequenc="") //在數(shù)據(jù)庫里執(zhí)行查詢 
  { 
   $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錯(cuò)誤:".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:已經(jīng)移到記錄集末尾!"; 
            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:請先執(zhí)行查詢:Query"; 
     return; 
    } 
    $this->nOffset=$Offset; 
   } 

  //得到指定行的指定列的值,返回字符串 
  //如果不指定Offset將取得下一行的值 
  //如果不指定nFields將取得該行的值,并已數(shù)組形式返回 
  function GetValue($nFields=-1,$Offset=-1) 
  { 
   if($this->nResult==-1) 
   { 
    $this->nErr=1; 
    $this->sErr="GetValue:請先執(zhí)行Query()函數(shù)!"; 
    return; 
   } 
   if($Offset>-1) 
   { 
        $this->nOffset=$Offset; 
    if($this->nOffset>=$this->nRows) 
    { 
     $this->nErr=1; 
     $this->sErr="GetValue:所要求的偏移量太大,無法達(dá)到!"; 
     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:所請求的列值大于實(shí)際的列值!"; 
     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:所請求的列不存在,請仔細(xì)檢查!"; 
            return; 
         } 
         return $aResult[$i]; 
     } 
   return $aResult; 
  } 

  function AddNew($TableName="") //標(biāo)志開始添加數(shù)據(jù) 
  { 
   $this->Initialize(); 
   if(!empty($TableName)) 
    $this->sTName=$TableName; 
   if($this->NewEdit>0) 
   { 
    $this->nErr=1; 
    $this->sErr="AddNew:你正在對數(shù)據(jù)庫進(jìn)行添加或更新操作!"; 
    return; 
   } 
   if(empty($this->sTName)) 
   { 
    $this->nErr=1; 
    $this->sErr="AddNew:想要添加的數(shù)據(jù)庫表為空,可以在構(gòu)造時(shí)指定,也可在AddNew()時(shí)指定!"; 
    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錯(cuò)誤:".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="") //對指定數(shù)據(jù)庫表進(jìn)行編輯 
  { 
         $this->Initialize(); 
         if(!empty($TableName)) 
             $this->sTName=$TableName; 
         $this->sEditCon=$Condition; 
         if(empty($this->sTName)) 
         { 
             $this->nErr=1; 
             $this->sErr="Edit:在編輯前請先指定數(shù)據(jù)庫表!"; 
             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錯(cuò)誤:".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) //指定數(shù)據(jù),跟在AddNew后執(zhí)行; 
  { 
       if($this->NewEdit==0) 
       { 
        $this->nErr=1; 
        $this->sErr="SetValue:請先執(zhí)行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]; 
         //根據(jù)當(dāng)前字段的類型生成相應(yīng)的新值 
         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."類型目前版本不支持,請用別的方法添加數(shù)據(jù)!"; 
            return; 
         } 

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

  function Update()  //存儲(chǔ)新值到數(shù)據(jù)庫 
  { 
   $strSQL=""; 

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

   if(empty($this->sValue)) 
   { 
    $this->nErr=1; 
    $this->sErr="Update:在數(shù)據(jù)為空的情況下,不能添加或修改數(shù)據(jù)!"; 
    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語句出錯(cuò),請檢查!"; 
      return; 
   } 

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

相關(guān)文章

  • MAC下Mysql5.7.10版本修改root密碼的方法

    MAC下Mysql5.7.10版本修改root密碼的方法

    這篇文章主要介紹了MAC下Mysql5.7.10版本修改root密碼的方法,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下
    2017-03-03
  • mysql 無法連接問題的定位和修復(fù)過程分享

    mysql 無法連接問題的定位和修復(fù)過程分享

    開發(fā)的一款網(wǎng)站防護(hù)產(chǎn)品中出現(xiàn)了一個(gè)客戶端上安裝后Mysql每隔一段時(shí)間就出現(xiàn)問題,這個(gè)問題是客戶反饋的,所以需要去復(fù)現(xiàn)和定位
    2013-03-03
  • Mysql中explain作用詳解

    Mysql中explain作用詳解

    這篇文章主要介紹了Mysql中explain的相關(guān)內(nèi)容,涉及索引的部分知識,具有一定參考價(jià)值,需要的朋友可以了解下。
    2017-10-10
  • MySQL分庫分表詳情

    MySQL分庫分表詳情

    互聯(lián)網(wǎng)項(xiàng)目中常用到的關(guān)系型數(shù)據(jù)庫是MySQL,隨著用戶和業(yè)務(wù)的增長,傳統(tǒng)的單庫單表模式難以滿足大量的業(yè)務(wù)數(shù)據(jù)存儲(chǔ)以及查詢,單庫單表中大量的數(shù)據(jù)會(huì)使寫入、查詢效率非常之慢,此時(shí)應(yīng)該采取分庫分表策略來解決。本篇文章主要介紹MySQL分庫分表,需要的朋友可以參考一下
    2021-09-09
  • MAC下修改mysql默認(rèn)字符集為utf8的方法

    MAC下修改mysql默認(rèn)字符集為utf8的方法

    本文主要介紹了如何修改MAC版mysql默認(rèn)字符集為utf8,如果你的MAC版mysql字符亂碼,可以參考一下這篇文章
    2018-03-03
  • 解決Mysql同步到ES時(shí)date和time字段類型轉(zhuǎn)換問題

    解決Mysql同步到ES時(shí)date和time字段類型轉(zhuǎn)換問題

    這篇文章主要介紹了Mysql同步到ES時(shí)date和time字段類型轉(zhuǎn)換問題解決辦法,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2023-07-07
  • MySQL時(shí)區(qū)查看及設(shè)置全過程

    MySQL時(shí)區(qū)查看及設(shè)置全過程

    在服務(wù)器環(huán)境下,MySQL默認(rèn)時(shí)區(qū)可能是UTC,需注意應(yīng)用時(shí)區(qū)設(shè)置,若查詢條件使用Now()/sysdate(),會(huì)根據(jù)MySQL時(shí)區(qū)查詢,導(dǎo)致時(shí)間錯(cuò)亂,可使用`selectnow()`檢查時(shí)間準(zhǔn)確性,查看和修改MySQL時(shí)區(qū)的方法包括使用命令和修改配置文件
    2025-01-01
  • MySQL數(shù)據(jù)庫大小寫敏感的問題

    MySQL數(shù)據(jù)庫大小寫敏感的問題

    今天小編就為大家分享一篇關(guān)于MySQL數(shù)據(jù)庫大小寫敏感的問題,小編覺得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來看看吧
    2019-03-03
  • Windows環(huán)境下的MYSQL5.7配置文件定位圖文分析

    Windows環(huán)境下的MYSQL5.7配置文件定位圖文分析

    本文通過圖文并茂的形式給大家介紹了Windows環(huán)境下的MYSQL5.7配置文件定位 ,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2019-05-05
  • MySQL版本低了不支持兩個(gè)時(shí)間戳類型的值解決方法

    MySQL版本低了不支持兩個(gè)時(shí)間戳類型的值解決方法

    在本篇文章里小編給大家分享了關(guān)于MySQL 版本低了,不支持兩個(gè)時(shí)間戳類型的值的相關(guān)知識點(diǎn),有興趣的朋友們可以參考下。
    2019-09-09

最新評論

井陉县| 当阳市| 辛集市| 泰宁县| 察哈| 渭南市| 鹤岗市| 固始县| 丁青县| 龙胜| 聂拉木县| 丹江口市| 同江市| 龙岩市| 中牟县| 永寿县| 莫力| 玛纳斯县| 尤溪县| 成武县| 阳春市| 比如县| 宁明县| 綦江县| 南江县| 福泉市| 临沧市| 阳春市| 青阳县| 宁安市| 临汾市| 西城区| 普兰县| 日喀则市| 泸州市| 濉溪县| 密山市| 特克斯县| 申扎县| 安陆市| 天镇县|