<script>ec(2);</script>
//------------------------------------------------ --------------------
//文件名:class.php
//总结:Access数据库操作类
//创建时间: 2006-8-10
//最后修改时间:
//版权所有 (c)2006 freeweb.nyist.net/~chairy [email]chaizuxue@163.com[/email]
// 使用示例:
//$databasepath="database.mdb";
//$dbusername="";
//$dbpassword="";
//include_once("class.php");
//$access=new Access($databasepath,$dbusername,$dbpassword);
//------------------------------------------------ --------------------
类访问
{
var $databasepath,$constr,$dbusername,$dbpassword,$link;
函数 Access($databasepath,$dbusername,$dbpassword)
{
$this->databasepath=$databasepath;
$this->用户名=$dbusername;
$this->password=$dbpassword;
$this->connect();
}
函数 connect()
{
$this->constr="DRIVER={Microsoft Access 驱动程序 (*.mdb)}; DBQ=" . realpath($this->数据库路径);
$this->link=odbc_connect($this->constr,$this->用户名,$this->密码,SQL_CUR_USE_ODBC);
返回 $this->link;
if($this->link) echo "恭喜你,数据库连接成功!";
else echo "数据库连接失败!";
}
函数查询($sql)
{
return @odbc_exec($this->link,$sql);
}
函数first_array($sql)
{
return odbc_fetch_array($this->query($sql));
}
函数 fetch_row($query)
{
返回 odbc_fetch_row($query);
}
functiontotal_num($sql)//获取记录总数
{
return odbc_num_rows($this->query($sql));
}
function close()//关闭数据库连接函数
{
odbc_close($this->link);
}
function insert($table,$field)//插入记录函数
{
$temp=explode(',',$field);
$ins='';
对于 ($i=0;$i
{
$ins.="'".$_POST[$temp[$i]]."',";
}
$ins=substr($ins,0,-1);
$sql="INSERT INTO ".$table." (".$field.") VALUES (".$ins.")";
$this->查询($sql);
}
function getinfo($table,$field,$id,$colnum)//获取当条记录详细信息
{
$sql="SELECT * FROM ".$table." WHERE ".$field."=".$id."";
$query=$this->query($sql);
if($this->fetch_row($query))
{
对于 ($i=1;$i
{
$info[$i]=odbc_result($query,$i);
}
}
返回 $info;
}
function getlist($table,$field,$colnum,$condition,$sort="ORDER BY id DESC")//获取记录列表
{
$sql="SELECT * FROM ".$table." ".$condition." ".$sort;
$query=$this->query($sql);
$i=0;
while ($this->fetch_row($query))
{
$recordlist[$i]=getinfo($table,$field,odbc_result($query,1),$colnum);
$i ;
}
返回 $recordlist;
}
function getfieldlist($table,$field,$fieldnum,$condition="",$sort="")//记录获取列表
{
$sql="SELECT ".$field." FROM ".$table." ".$condition." ".$sort;
$query=$this->query($sql);
$i=0;
while ($this->fetch_row($query))
{
对于 ($j=0;$j
{
$info[$j]=@odbc_result($query,$j 1);
}
$rdlist[$i]=$info;
$i ;
}
返回 $rdlist;
}
function updateinfo($table,$field,$id,$set)//更新记录
{
$sql="UPDATE ".$table." SET ".$set." WHERE ".$field."=".$id;
$this->查询($sql);
}
function deleteinfo($table,$field,$id)//删除记录
{
$sql="DELETE FROM ".$table." WHERE ".$field."=".$id;
$this->查询($sql);
}
function deleterecord($table,$condition)//删除指定条件的记录
{
$sql="DELETE FROM ".$table." WHERE ".$condition;
$this->查询($sql);
}
function getcondrecord($table,$condition="")//获取指定条件的记录数
{
$sql="SELECT COUNT(*) AS num FROM ".$table." ".$condition;
$query=$this->query($sql);
$this->fetch_row($query);
$num=odbc_result($query,1);
返回$num;
}
}
?>