封装连接数据库

Posted echopp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了封装连接数据库相关的知识,希望对你有一定的参考价值。

$host =‘localhost‘;
        $root = ‘root‘;
        $dbpass  = ‘‘;
        $db = ‘zhuce‘;
        $f = mysql_connect($host,$root,$dbpass);
        if(!$f){
            echo ‘数据库连接失败‘;
            die;
        }
        $f=mysql_query("use $db");
            if(!$f){
                echo ‘数据库选择失败‘;
            }
        mysql_query("set names utf8");

        function my_select($sel){ //查询数据
            $res =  mysql_query($sel);
            $result = array();
            while($se=mysql_fetch_assoc($res)){
                    $result=$se;
            }
            return $result;
        }
        function my_insert($sql){  //插入数据
                $insert=mysql_query($sql);    
        }

以上是关于封装连接数据库的主要内容,如果未能解决你的问题,请参考以下文章

c#如何将数据库连接封装成dll

关于jdbc和数据库连接池的关系(不是封装的关系)

PHP封装数据库连接

asp.net 连接SQL数据库的封装类,及其调用方法

jdbc 工具类 封装数据库连接

python:封装连接数据库方法