设为首页收藏本站language 语言切换
查看: 1485|回复: 0
收起左侧

一个PHP操作Access类(PHP+ODBC+Access)

[复制链接]
发表于 2010-2-24 13:40:44 | 显示全部楼层 |阅读模式
<><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=新宋体>&lt;?</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-&gt;databasepath=$databasepath</FONT><FONT face=新宋体>;<BR>        $this-&gt;username=$dbusername</FONT><FONT face=新宋体>;<BR>        $this-&gt;password=$dbpassword</FONT><FONT face=新宋体>;<BR>        $this-&gt;connect</FONT><FONT face=新宋体>();<BR>          }<BR>        <BR>    function connect</FONT><FONT face=新宋体>()<BR>    {<BR>        $this-&gt;constr="DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" . realpath($this-&gt;databasepath</FONT><FONT face=新宋体>); <BR>        $this-&gt;link=odbc_connect($this-&gt;constr,$this-&gt;username,$this-&gt;password,SQL_CUR_USE_ODBC</FONT><FONT face=新宋体>);<BR>        return $this-&gt;link</FONT><FONT face=新宋体>;<BR>        </FONT><FONT face=新宋体>//if($this-&gt;link) echo "恭喜你,数据库连接成功!";<BR>        //else echo "数据库连接失败!";<BR>    </FONT><FONT face=新宋体>}<BR>        <BR>    function query($sql</FONT><FONT face=新宋体>)<BR>    {<BR>        return @odbc_exec($this-&gt;link,$sql</FONT><FONT face=新宋体>);<BR>    }<BR>        <BR>    function first_array($sql</FONT><FONT face=新宋体>)<BR>    {<BR>        return odbc_fetch_array($this-&gt;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-&gt;query($sql</FONT><FONT face=新宋体>));<BR>    }<BR>        <BR>    function close()</FONT><FONT face=新宋体>//关闭数据库连接函数<BR>    </FONT><FONT face=新宋体>{    <BR>        odbc_close($this-&gt;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&lt;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-&gt;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-&gt;query($sql</FONT><FONT face=新宋体>);<BR>        if($this-&gt;fetch_row($query</FONT><FONT face=新宋体>))<BR>        {<BR>            for ($i=1;$i&lt;$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-&gt;query($sql</FONT><FONT face=新宋体>);<BR>         $i=0</FONT><FONT face=新宋体>;<BR>         while ($this-&gt;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-&gt;query($sql</FONT><FONT face=新宋体>);<BR>         $i=0</FONT><FONT face=新宋体>;<BR>         while ($this-&gt;fetch_row($query</FONT><FONT face=新宋体>)) <BR>         {<BR>         for ($j=0;$j&lt;$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-&gt;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-&gt;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-&gt;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-&gt;query($sql</FONT><FONT face=新宋体>);<BR>         $this-&gt;fetch_row($query</FONT><FONT face=新宋体>);<BR>         $num=odbc_result($query,1</FONT><FONT face=新宋体>);<BR>         return $num</FONT><FONT face=新宋体>;            <BR>    }<BR>     }<BR>?&gt; </FONT><BR></P>
您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-6 21:02 , Processed in 0.124527 second(s), 22 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表