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)&&empty($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(&qu 猜你喜欢