Home > Backend Development > PHP Tutorial > PHP使用PDO连接ACCESS数据库_PHP

PHP使用PDO连接ACCESS数据库_PHP

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-31 13:13:23
Original
1020 people have browsed it

1,参考W3CSHOOL

http://www.w3cschool.cc/php/php-pdo.html

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 "
Copy after login
";

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

Related labels:
Statement of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template