PHP operation access database method
The example in this article describes how PHP operates the access database. Share it with everyone for your reference, the details are as follows:
In PHP website development, PHP and Mysql are the best combination, but when you want to transplant websites from other platforms to the PHP platform, you must Encountered portability issues, such as how to port the ASP+ACCESS platform? The first problem is that PHP connects to the Access database. How does PHP establish a connection with the Access database without changing the database?
PHP provides a variety of database connection solutions. Here is a detailed code example of how to use PHP ADOdb, PDO, ODBC to establish a connection with the Access database, as a starting point.
Preparation
Use OFFICE tool to create Access database file
1. Use PHP ADOdb to connect to Access database
1. First You need to install the PHP ADOdb library.
2. The code for using PHP ADOdb to connect to the Access database is as follows
<?php include('adodb5/adodb.inc.php'); $db =& ADONewConnection('access'); $dsn = "Driver={Microsoft Access Driver (*.mdb)};Dbq=".realpath("access.mdb").";Uid=;Pwd=;"; $db->Connect($dsn); $rs = $db->Execute('select * from web'); print "<pre class="brush:php;toolbar:false">"; print_r($rs->GetRows()); print ""; ?>
Description: Similar to using PHP ADOdb to establish a connection with the Mysql database, first put The ADOdb class library is included, and then ADONewConnection, Connect, and Execute are called to establish a connection with the Access database and perform query operations.
2. Use PHP PDO to connect to Access database
The PDO function requires PHP5 or above support. Before using PDO, you must ensure that the PDO function is installed. How to configure and install PDO? ?
Just find extension_dir in the PHP.INI configuration file, make it point to the extension library directory address, and remove the semicolon (;) before the PDO driver DLL you want to use, restart Apache, and PDO will be installed. . Since we use PDO to connect to the Access database here, at least ensure that php_pdo.dll and php_pdo_odbc.dll can support it.
Use PDO to connect to the Access database code example
<?php $db = new PDO("odbc:driver={microsoft access driver (*.mdb)};dbq=".realpath("access.mdb")) or die("Connect Error"); $rs = $db->query('select * from web'); print "<pre class="brush:php;toolbar:false">"; print_r($rs->fetchAll()); print ""; ?>
Instructions: First initialize the PDO object, establish the connection between PHP and the Access database, and then Query operations are performed through the PDO query function.
3. Use ODBC to connect to the Access database
Code examples for using ODBC to connect to the Access database
<?php $dsn = "DRIVER=Microsoft Access Driver (*.mdb);dbq=".realpath("access.mdb"); $conn = @odbc_connect($dsn,"","",SQL_CUR_USE_ODBC ) or die ("Connect Error!"); $sql = "select * from web"; $rs = @odbc_do($conn,$sql); while(odbc_fetch_row($rs)){ echo "网站名称:".odbc_result($rs,"webname"); echo "<br/>网站地址:".odbc_result($rs,"website"); } odbc_close($conn); ?>
Description: First use odbc_connect to connect to the access database. The first three parameters are: $DSN, database user name, password. The fourth parameter is set to SQL_CUR_USE_ODBC mainly to avoid unexpected errors when connecting to the Access database; then use odbc_do to perform query operations. , and call odbc_fetch_row, odbc_result to output the query content, and finally use odbc_close to close the Access database connection.
This completes the introduction of code examples for using PHP ADOdb, PDO, and ODBC to connect to the Access database and perform operations. Through the above examples, we can see that the methods for connecting to the Access database using PHP are similar. Which method to use depends on The configuration of the PHP environment.
For more articles related to PHP operating access database methods, please pay attention to the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.
