本文实例讲述了php的mssql数据库连接类实例代码,分享给大家供大家参考。
具体实现代码如下:
类 DB_Sql {
var $Host = "";
var $数据库 = "";
var $User = "";
var $密码 = "";
var $Link_ID = 0;
var $Query_ID = 0;
var $Record = array();
var $Row = 0;
var $Errno = 0;
var $Error = "";
var $Auto_Free = 0; ## 将其设置为 1 以自动释放结果
函数 DB_Sql($query = "") {
$this->查询($query);
}
函数连接() {
if ( 0 == $this->Link_ID ) {
$this->Link_ID=mssql_connect($this->主机, $this->用户, $this->密码);
if (!$this->Link_ID)
$this->halt("Link-ID == false,mssql_pconnect 失败");
否则
@mssql_select_db($this->数据库, $this->Link_ID);
}
}
函数 free_result(){
mssql_free_result($this->Query_ID);
$this->Query_ID = 0;
}
函数查询($Query_String)
{
/* 请不要有空查询,因为 PHP4 会阻碍它们。 */
if ($Query_String == "")
/* 空查询字符串从构造函数传递,
* 在没有查询的情况下调用类时,例如在某些情况下
* 像这样:'$db = new DB_Sql_Subclass;'
*/
返回0;
if (!$this->Link_ID)
$this->connect();
# printf("
调试:查询 = %s
", $Query_String);
$this->Query_ID = mssql_query($Query_String, $this->Link_ID);
$这->行= 0;
if (!$this->Query_ID) {
$this->Errno = 1;
$this->Error = "一般错误(MSSQL 接口无法返回详细错误消息)。";
$this->halt("无效的 SQL: ".$Query_String);
}
返回 $this->Query_ID;
}
函数 next_record() {
if ($this->Record = mssql_fetch_row($this->Query_ID)) {
// 添加到 Record[]
$count = mssql_num_fields($this->Query_ID);
for ($i=0; $i
$fieldinfo = mssql_fetch_field($this->Query_ID,$i);
$this->Record[strtolower($fieldinfo->name)] = $this->Record[$i];
}
$this->行 = 1;
$统计= 1;
} 其他 {
if ($this->Auto_Free) {
$this->free_result();
}
$统计= 0;
}
返回$stat;
}
函数seek($pos) {
mssql_data_seek($this->Query_ID,$pos);
$this->Row = $pos;
}
函数元数据($table) {
$计数 = 0;
$id = 0;
$res = array();
$this->connect();
$id = mssql_query("select * from $table", $this->Link_ID);
if (!$id) {
$this->Errno = 1;
$this->Error = "一般错误(MSSQL 接口无法返回详细错误消息)。";
$this->halt("元数据查询失败。");
}
$count = mssql_num_fields($id);
for ($i=0; $i
$info = mssql_fetch_field($id, $i);
$res[$i]["表"] = $表;
$res[$i]["名称"] = $info["名称"];
$res[$i]["len"] = $info["max_length"];
$res[$i]["flags"] = $info["numeric"];
}
$this->free_result();
返回 $res;
}
函数受影响的行(){
// PHP3/4 不支持该函数。 克里斯·约翰逊,2001 年 5 月 16 日。
// return mssql_affected_rows($this->Query_ID);
$rsRows = mssql_query("选择@@rowcount作为行", $this->Link_ID);
if ($rsRows) {
返回 mssql_result($rsRows, 0, "行");
}
}
函数 num_rows() {
返回 mssql_num_rows($this->Query_ID);
}
函数 num_fields() {
返回 mssql_num_fields($this->Query_ID);
}
函数 nf() {
返回 $this->num_rows();
}
函数 np() {
打印 $this->num_rows();
}
函数 f($Field_Name) {
返回 $this->Record[strtolower($Field_Name)];
}
函数 p($Field_Name) {
打印 $this->f($Field_Name);
}
函数暂停($msg) {
printf("数据库错误:%s
", $msg);
printf("MSSQL 错误: %s (%s)
",
$this->Errno,
$this->错误);
die("会话已停止。");
}
}
希望本文对大家的PHP程序设计有所帮助。