|
< ><FONT face=新宋体><FONT color=#000000>最近接了一个网站使用的是PHP+Access,汗,以前从来没有用php+Access做过,参考别人写的access函数,自己加入了一些其他的功能,封装为一个类,感觉调用蛮方便的,虽然没有测试过,但是感觉PHP+Access的速度没有PHP+MySQL速度快。<BR> 代码如下:</FONT><BR></FONT></P>< ><FONT face=新宋体></FONT> </P>< ><FONT face=新宋体><?</FONT><FONT face=新宋体>php<BR></FONT><FONT face=新宋体>--------------------------------------------------------------------<BR></FONT><FONT face=新宋体>//FileName:class.php<BR>//Summary: Access数据库操作类<BR>//Author: forest<BR>//CreateTime: 2006-8-10 <BR>//LastModifed:<BR>//copyright (c)2006 <BR>//http://freeweb.nyist.net/~chairy <BR>//chaizuxue@163.com<BR>// 使用范例:<BR>//$databasepath="database.mdb";<BR>//$dbusername="";<BR>//$dbpassword="";<BR>//include_once("class.php");<BR>//$access=new Access($databasepath,$dbusername,$dbpassword);<BR><BR></FONT><FONT face=新宋体>--------------------------------------------------------------------<BR> class </FONT><FONT face=新宋体>Access<BR> </FONT><FONT face=新宋体>{<BR> var $databasepath,$constr,$dbusername,$dbpassword,$link</FONT><FONT face=新宋体>;<BR> function Access($databasepath,$dbusername,$dbpassword</FONT><FONT face=新宋体>)<BR> {<BR> $this->databasepath=$databasepath</FONT><FONT face=新宋体>;<BR> $this->username=$dbusername</FONT><FONT face=新宋体>;<BR> $this->password=$dbpassword</FONT><FONT face=新宋体>;<BR> $this->connect</FONT><FONT face=新宋体>();<BR> }<BR> <BR> function connect</FONT><FONT face=新宋体>()<BR> {<BR> $this->constr="DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" . realpath($this->databasepath</FONT><FONT face=新宋体>); <BR> $this->link=odbc_connect($this->constr,$this->username,$this->password,SQL_CUR_USE_ODBC</FONT><FONT face=新宋体>);<BR> return $this->link</FONT><FONT face=新宋体>;<BR> </FONT><FONT face=新宋体>//if($this->link) echo "恭喜你,数据库连接成功!";<BR> //else echo "数据库连接失败!";<BR> </FONT><FONT face=新宋体>}<BR> <BR> function query($sql</FONT><FONT face=新宋体>)<BR> {<BR> return @odbc_exec($this->link,$sql</FONT><FONT face=新宋体>);<BR> }<BR> <BR> function first_array($sql</FONT><FONT face=新宋体>)<BR> {<BR> return odbc_fetch_array($this->query($sql</FONT><FONT face=新宋体>));<BR> }<BR> <BR> function fetch_row($query</FONT><FONT face=新宋体>)<BR> {<BR> return odbc_fetch_row($query</FONT><FONT face=新宋体>);<BR> }<BR> <BR> function total_num($sql)</FONT><FONT face=新宋体>//取得记录总数<BR> </FONT><FONT face=新宋体>{<BR> return odbc_num_rows($this->query($sql</FONT><FONT face=新宋体>));<BR> }<BR> <BR> function close()</FONT><FONT face=新宋体>//关闭数据库连接函数<BR> </FONT><FONT face=新宋体>{ <BR> odbc_close($this->link</FONT><FONT face=新宋体>);<BR> }<BR> <BR> function insert($table,$field)</FONT><FONT face=新宋体>//插入记录函数<BR> </FONT><FONT face=新宋体>{<BR> $temp=explode(',',$field</FONT><FONT face=新宋体>);<BR> $ins=''</FONT><FONT face=新宋体>;<BR> for ($i=0;$i<count($temp);$i</FONT><FONT face=新宋体>++)<BR> {<BR> $ins.="'".$_POST[$temp[$i]]."',"</FONT><FONT face=新宋体>;<BR> }<BR> $ins=substr($ins,0,-1</FONT><FONT face=新宋体>);<BR> $sql="INSERT INTO ".$table." (".$field.") VALUES (".$ins.")"</FONT><FONT face=新宋体>;<BR> $this->query($sql</FONT><FONT face=新宋体>);<BR> }<BR> <BR> function getinfo($table,$field,$id,$colnum)</FONT><FONT face=新宋体>//取得当条记录详细信息<BR> </FONT><FONT face=新宋体>{<BR> $sql="SELECT * FROM ".$table." WHERE ".$field."=".$id.""</FONT><FONT face=新宋体>;<BR> $query=$this->query($sql</FONT><FONT face=新宋体>);<BR> if($this->fetch_row($query</FONT><FONT face=新宋体>))<BR> {<BR> for ($i=1;$i<$colnum;$i</FONT><FONT face=新宋体>++)<BR> {<BR> $info[$i]=odbc_result($query,$i</FONT><FONT face=新宋体>);<BR> }<BR> }<BR> return $info</FONT><FONT face=新宋体>;<BR> }<BR> <BR> function getlist($table,$field,$colnum,$condition,$sort="ORDER BY id DESC")</FONT><FONT face=新宋体>//取得记录列表 <BR> </FONT><FONT face=新宋体>{<BR> $sql="SELECT * FROM ".$table." ".$condition." ".$sort</FONT><FONT face=新宋体>;<BR> $query=$this->query($sql</FONT><FONT face=新宋体>);<BR> $i=0</FONT><FONT face=新宋体>;<BR> while ($this->fetch_row($query</FONT><FONT face=新宋体>)) <BR> {<BR> $recordlist[$i]=getinfo($table,$field,odbc_result($query,1),$colnum</FONT><FONT face=新宋体>);<BR> $i</FONT><FONT face=新宋体>++;<BR> }<BR> return $recordlist</FONT><FONT face=新宋体>;<BR> }<BR> <BR> function getfieldlist($table,$field,$fieldnum,$condition="",$sort="")</FONT><FONT face=新宋体>//取得记录列表<BR> </FONT><FONT face=新宋体>{<BR> $sql="SELECT ".$field." FROM ".$table." ".$condition." ".$sort</FONT><FONT face=新宋体>;<BR> $query=$this->query($sql</FONT><FONT face=新宋体>);<BR> $i=0</FONT><FONT face=新宋体>;<BR> while ($this->fetch_row($query</FONT><FONT face=新宋体>)) <BR> {<BR> for ($j=0;$j<$fieldnum;$j</FONT><FONT face=新宋体>++)<BR> {<BR> $info[$j]=odbc_result($query,$j+1</FONT><FONT face=新宋体>);<BR> } <BR> $rdlist[$i]=$info</FONT><FONT face=新宋体>;<BR> $i</FONT><FONT face=新宋体>++;<BR> }<BR> return $rdlist</FONT><FONT face=新宋体>;<BR> }<BR> <BR> function updateinfo($table,$field,$id,$set)</FONT><FONT face=新宋体>//更新记录<BR> </FONT><FONT face=新宋体>{<BR> $sql="UPDATE ".$table." SET ".$set." WHERE ".$field."=".$id</FONT><FONT face=新宋体>;<BR> $this->query($sql</FONT><FONT face=新宋体>);<BR> }<BR> <BR> function deleteinfo($table,$field,$id)</FONT><FONT face=新宋体>//删除记录<BR> </FONT><FONT face=新宋体>{<BR> $sql="DELETE FROM ".$table." WHERE ".$field."=".$id</FONT><FONT face=新宋体>;<BR> $this->query($sql</FONT><FONT face=新宋体>);<BR> }<BR> <BR> function deleterecord($table,$condition)</FONT><FONT face=新宋体>//删除指定条件的记录<BR> </FONT><FONT face=新宋体>{<BR> $sql="DELETE FROM ".$table." WHERE ".$condition</FONT><FONT face=新宋体>;<BR> $this->query($sql</FONT><FONT face=新宋体>);<BR> }<BR> <BR> function getcondrecord($table,$condition="")</FONT><FONT face=新宋体>// 取得指定条件的记录数<BR> </FONT><FONT face=新宋体>{<BR> $sql="SELECT COUNT(*) AS num FROM ".$table." ".$condition</FONT><FONT face=新宋体>;<BR> $query=$this->query($sql</FONT><FONT face=新宋体>);<BR> $this->fetch_row($query</FONT><FONT face=新宋体>);<BR> $num=odbc_result($query,1</FONT><FONT face=新宋体>);<BR> return $num</FONT><FONT face=新宋体>; <BR> }<BR> }<BR>?> </FONT><BR></P> |
|