$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."
"); } else { echo("没有错误
"); } }
function Execute($SQL) //直接执行SQL语句 { if(empty($SQL)) { $this->nErr=1;
上一篇:阅兵:Sql server 2005数据库列表合计
下一篇:如何自动发布MS SQL SERVER数据库
|