当前位置:Gxlcms > PHP教程 > thinkphp连接access数据库有关问题求解

thinkphp连接access数据库有关问题求解

时间:2021-07-01 10:21:17 帮助过:4人阅读

thinkphp连接access数据库问题求解
我现在相用thinkphp+access来做网站,但是不知道怎么用thinkphp连接数据库,知道的说一下吧。求解~~~~~~谢了

------解决方案--------------------
config.php配置如下,db.mdb为数据文件地址
PHP code
true, 
    'DB_TYPE'=> 'pdo',
    'DB_DSN'=>"odbc:driver={microsoft access driver (*.mdb)};dbq="db.mdb",
    'DB_USER'=>'root',
    'DB_PWD'=>'',
    'DB_PREFIX'=>'',
);
?>                     

人气教程排行