Home >Backend Development >PHP Tutorial >ADODB 数据库Access连接,adodb数据库access_PHP教程

ADODB 数据库Access连接,adodb数据库access_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:44:331040browse

ADODB 数据库Access连接,adodb数据库access

$filepath=__FILE__;
//echo __FILE__;
$newarray=explode("\\",$filepath);
$num=count($newarray)-1;
$filenamelen=strlen($newarray[$num]);
$totallen=strlen(__FILE__);
$subnum=$totallen-$filenamelen-5;
$tmppath=substr(__FILE__,0,$subnum);
$newpath=$tmppath."db\db.mdb"; //数据库路径
include "../adodb/adodb.inc.php"; //载入adodb
$conn = ADONewConnection('access'); //建立accessl连接
$conn->Pconnect("Driver={Microsoft Access Driver (*.mdb)};Dbq=$newpath");
$conn->execute("set names utf8");

?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1048756.htmlTechArticleADODB 数据库Access连接,adodb数据库access ?php $filepath=__FILE__; //echo __FILE__; $newarray=explode("\\",$filepath); $num=count($newarray)-1; $filenamelen=strlen($newarr...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn