php的mssql数据库连接类实例


Posted in PHP onNovember 28, 2014

本文实例讲述了php的mssql数据库连接类实例代码,分享给大家供大家参考。

具体实现代码如下:

class DB_Sql { 

  var $Host     = ""; 

  var $Database = ""; 

  var $User     = ""; 

  var $Password = ""; 

  var $Link_ID  = 0; 

  var $Query_ID = 0; 

  var $Record   = array(); 

  var $Row      = 0; 

   

  var $Errno    = 0; 

  var $Error    = ""; 

  var $Auto_Free = 0;     ## set this to 1 to automatically free results 

   

  function DB_Sql($query = "") { 

      $this->query($query); 

  } 

  function connect() { 

    if ( 0 == $this->Link_ID ) { 

      $this->Link_ID=mssql_connect($this->Host, $this->User, $this->Password); 

      if (!$this->Link_ID) 

        $this->halt("Link-ID == false, mssql_pconnect failed"); 

      else 

          @mssql_select_db($this->Database, $this->Link_ID); 

    } 

  } 

  function free_result(){ 

      mssql_free_result($this->Query_ID); 

      $this->Query_ID = 0; 

  } 

   

  function query($Query_String)  

  { 

     

    /* No empty queries, please, since PHP4 chokes on them. */ 

    if ($Query_String == "") 

      /* The empty query string is passed on from the constructor, 

       * when calling the class without a query, e.g. in situations 

       * like these: '$db = new DB_Sql_Subclass;' 

       */ 

      return 0; 

      if (!$this->Link_ID) 

        $this->connect(); 

     

#   printf("<br>Debug: query = %s<br> ", $Query_String); 

 

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

    $this->Row = 0; 

    if (!$this->Query_ID) { 

      $this->Errno = 1; 

      $this->Error = "General Error (The MSSQL interface cannot return detailed error messages)."; 

      $this->halt("Invalid SQL: ".$Query_String); 

    } 

    return $this->Query_ID; 

  } 

   

  function next_record() { 

       

    if ($this->Record = mssql_fetch_row($this->Query_ID)) { 

      // add to Record[<key>] 

      $count = mssql_num_fields($this->Query_ID); 

      for ($i=0; $i<$count; $i++){ 

          $fieldinfo = mssql_fetch_field($this->Query_ID,$i); 

        $this->Record[strtolower($fieldinfo->name)] = $this->Record[$i]; 

      } 

      $this->Row += 1; 

      $stat = 1; 

    } else { 

      if ($this->Auto_Free) { 

            $this->free_result(); 

          } 

      $stat = 0; 

    } 

    return $stat; 

  } 

   

  function seek($pos) { 

        mssql_data_seek($this->Query_ID,$pos); 

      $this->Row = $pos; 

  } 

  function metadata($table) { 

    $count = 0; 

    $id    = 0; 

    $res   = array(); 

    $this->connect(); 

    $id = mssql_query("select * from $table", $this->Link_ID); 

    if (!$id) { 

      $this->Errno = 1; 

      $this->Error = "General Error (The MSSQL interface cannot return detailed error messages)."; 

      $this->halt("Metadata query failed."); 

    } 

    $count = mssql_num_fields($id); 

     

    for ($i=0; $i<$count; $i++) { 

        $info = mssql_fetch_field($id, $i); 

      $res[$i]["table"] = $table; 

      $res[$i]["name"]  = $info["name"]; 

      $res[$i]["len"]   = $info["max_length"]; 

      $res[$i]["flags"] = $info["numeric"]; 

    } 

    $this->free_result(); 

    return $res; 

  } 

   

  function affected_rows() { 

// Not a supported function in PHP3/4.  Chris Johnson, 16May2001. 

//    return mssql_affected_rows($this->Query_ID); 

    $rsRows = mssql_query("Select @@rowcount as rows", $this->Link_ID); 

    if ($rsRows) {        

       return mssql_result($rsRows, 0, "rows"); 

    } 

  } 

   

  function num_rows() { 

    return mssql_num_rows($this->Query_ID); 

  } 

   

  function num_fields() { 

    return mssql_num_fields($this->Query_ID); 

  } 

  function nf() { 

    return $this->num_rows(); 

  } 

   

  function np() { 

    print $this->num_rows(); 

  } 

   

  function f($Field_Name) { 

    return $this->Record[strtolower($Field_Name)]; 

  }

   

  function p($Field_Name) { 

    print $this->f($Field_Name); 

  } 

   

  function halt($msg) { 

    printf("</td></tr></table><b>Database error:</b> %s<br> ", $msg); 

    printf("<b>MSSQL Error</b>: %s (%s)<br> ", 

      $this->Errno, 

      $this->Error); 

    die("Session halted."); 

  } 

}

希望本文所述对大家的PHP程序设计有所帮助。

PHP 相关文章推荐
用PHP中的 == 运算符进行字符串比较
Nov 26 PHP
php中支持多种编码的中文字符串截取函数!
Mar 20 PHP
PHP Zip解压 文件在线解压缩的函数代码
May 26 PHP
PHP获取数组长度或某个值出现次数的方法
Feb 11 PHP
PHP中你应该知道的require()文件包含的正确用法
Jun 12 PHP
摘自织梦CMS的HTTP文件下载类
Aug 08 PHP
部署PHP时的4个配置修改说明
Oct 19 PHP
thinkphp中多表查询中防止数据重复的sql语句(必看)
Sep 22 PHP
php实现将HTML页面转换成word并且保存的方法
Oct 14 PHP
PHP上传图片、删除图片简单实例
Nov 12 PHP
wordpress网站转移到本地运行测试的方法
Mar 15 PHP
Yii2.0使用阿里云OSS的SDK上传图片、下载、删除图片示例
Sep 20 PHP
smarty中post用法实例
Nov 28 #PHP
smarty简单入门实例
Nov 28 #PHP
php最简单的删除目录与文件实现方法
Nov 28 #PHP
php查找指定目录下指定大小文件的方法
Nov 28 #PHP
thinkphp四种url访问方式详解
Nov 28 #PHP
thinkphp数据查询和遍历数组实例
Nov 28 #PHP
php中fgetcsv()函数用法实例
Nov 28 #PHP
You might like
GD输出汉字的函数的分析
2006/10/09 PHP
PHP获取搜索引擎关键字来源的函数(支持百度和谷歌等搜索引擎)
2012/10/03 PHP
php清除和销毁session的方法分析
2015/03/19 PHP
php实现文件上传及头像预览功能
2017/01/15 PHP
javascript实现划词标记+划词搜索功能
2007/03/06 Javascript
User Scripts: Video Download by User Scripts
2007/05/14 Javascript
javascript学习笔记(九)javascript中的原型(prototype)及原型链的继承方式
2011/04/12 Javascript
用JavaScript实现用一个DIV来包装文本元素节点
2014/09/09 Javascript
JS实现向表格中动态添加行的方法
2015/03/30 Javascript
js实现prototype扩展的方法(字符串,日期,数组扩展)
2016/01/14 Javascript
js css+html实现简单的日历
2016/07/14 Javascript
JavaScript仿百度图片浏览效果
2016/11/23 Javascript
js仿淘宝评价评分功能
2017/02/28 Javascript
详解vue几种主动刷新的方法总结
2019/02/19 Javascript
layui清除radio的选中状态实例
2019/11/14 Javascript
JS XMLHttpRequest原理与使用方法深入详解
2020/04/30 Javascript
vue-router的hooks用法详解
2020/06/08 Javascript
Python中将字典转换为XML以及相关的命名空间解析
2015/10/15 Python
Python numpy生成矩阵、串联矩阵代码分享
2017/12/04 Python
Python实现基于KNN算法的笔迹识别功能详解
2018/07/09 Python
Sanic框架请求与响应实例分析
2018/07/16 Python
Python基于plotly模块实现的画图操作示例
2019/01/23 Python
Python3 列表,数组,矩阵的相互转换的方法示例
2019/08/05 Python
python2使用bs4爬取腾讯社招过程解析
2019/08/14 Python
Python学习笔记之字符串和字符串方法实例详解
2019/08/22 Python
Python中Selenium模块的使用详解
2020/10/09 Python
英国床和浴室商场:Bed & Bath Emporium
2018/05/20 全球购物
印度手工编织服装和家居用品商店:Fabindi
2019/10/07 全球购物
办公室主任先进事迹
2014/01/18 职场文书
绿化先进工作者事迹材料
2014/01/30 职场文书
幼儿教师演讲稿
2014/05/06 职场文书
幼儿园综治宣传月活动总结
2015/05/07 职场文书
在校证明模板
2015/06/17 职场文书
运动会100米加油稿
2015/07/21 职场文书
python实现简单倒计时功能
2021/04/21 Python
pyqt5打包成exe可执行文件的方法
2021/05/14 Python