Home  >  Article  >  php教程  >  PHP使用PDO连接ACCESS数据库

PHP使用PDO连接ACCESS数据库

WBOY
WBOYOriginal
2016-06-06 20:07:111021browse

本文给大家分享的是一个简单的php使用pdo方式连接access数据库的方法,有需要的小伙伴可以参考下。

1,参考W3CSHOOL

2,,连接access

复制代码 代码如下:


$db = new PDO("odbc:driver={microsoft access driver (*.mdb)};
              dbq=".realpath("data.mdb"))
              or die("Connect Error");
$rs = $db->query('select * from user');
print "

";<br>
print_r($rs->fetchAll());<br>
print "
";

以上就是简单的实用php的pdo方式连接ACCESS数据库的方法了,希望大家能够喜欢。

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