Home Backend Development PHP Tutorial Differences and connections between the three main APIs when php connects to the MySQL database server: mysql, mysqli, pdo_PHP tutorial

Differences and connections between the three main APIs when php connects to the MySQL database server: mysql, mysqli, pdo_PHP tutorial

Jul 13, 2016 pm 05:46 PM
api mysql mysqli pdo php host the difference database hour server

Overview

This section provides a brief introduction to the options available when you need to interact with the Mysql database during PHP application development.

What is API?

An application programming interface (abbreviation for Application Programming Interface) defines the classes, methods, functions, variables, etc. that your application needs to call in order to complete specific tasks. The APIs required when a PHP application needs to interact with a database are usually exposed (called by the terminal PHP programmer) through PHP extensions.

APIs can be procedural or object-oriented. For procedural APIs, we complete tasks by calling functions, while for object-oriented APIs, we instantiate classes and call methods on the objects obtained after instantiation. Of the two interfaces, the latter is usually preferred because it is more modern and gives us a good code structure.

When building a PHP application that needs to connect to a MySQL server, there are several APIs to choose from. This document discusses the available APIs and discusses how to choose the best solution for your application.

What is a connector?

In the MySQL documentation, the term connector is explained as "a piece of software code that allows your application to connect to the MySQL database server". MySQL provides connectors for many languages, including PHP.

When your PHP application needs to interact with a database server, you need to write PHP code to complete a series of activities such as "connecting to the database server", "querying the database" and other database-related functions. Your PHP application will use the software that provides these APIs, or some intermediate library when needed, to handle the interaction between your application and the database server. This type of software is often thought of as a connector, which allows your reference to connect to a database server.

What is a driver?

A driver is a piece of software code designed to interact with a specific type of database server. The driver may call some libraries, such as the MySQL client library or the MySQL Native driver library. These libraries implement the low-level protocols for interacting with the MySQL database server.

By way of example, the PDO (abbreviation for PHP Database Object) database abstraction layer can use a variety of database-specific drivers. One of the drivers is the PDO MYSQL driver, which is the interface with the MySQL server.

Sometimes people use the terms connector and driver interchangeably. In MySQL related documentation the term "

driver" is used as a connector package that provides software code for a specific part of the database.

What is an extension?

You will also find many other

extensions in the PHP documentation. PHP code is composed of a core and some optional extensions that make up the core functionality. MySQL related extensions of PHP, such as mysqli, mysql are all implemented based on the PHP extension framework.

A typical function of extensions is to expose an API to PHP programmers, allowing extended functions to be used by programmers. Of course, there are also some extensions developed based on the PHP extension framework that do not expose API interfaces to PHP programmers.

For example, the PDO MySQL driver extension does not expose the API interface to PHP programmers, but provides an interface to the PDO layer above it.

The terms API and extension do not describe the same thing, because extensions may not need to expose an API interface to programmers.

What are the main APIs provided in PHP for MySQL?

When considering connecting to a MySQL database server, there are three main APIs to choose from:

  • MySQL extension for PHP

  • mysqli extension for PHP

  • PHP Data Object (PDO)

All three have their own advantages and disadvantages. The following discussion is intended to give a brief introduction to the key aspects of each API.

What is the MySQL extension for PHP?

This was an early extension designed and developed to allow PHP applications to interact with MySQL databases. The mysql extension provides a procedure-oriented interface and is designed for MySQL 4.1.3 or earlier. Therefore, although this extension can interact with MySQL 4.1.3 or newer database servers, it does not support some features provided by later MySQL servers.

Note:

If you are using MySQL 4.1.3 or newer server version, strongly recommend that you use the mysqli extension instead.

The source code of the mysql extension is in the PHP extension directory ext/mysql.

For more information on the mysql extension, see MySQL.

What is the mysqli extension for PHP?

The mysqli extension, which we sometimes call the MySQL enhancement extension, can be used to take advantage of new advanced features in MySQL 4.1.3 or later. The mysqli extension is included in PHP 5 and later.

The mysqli extension has a series of advantages. Compared with the mysql extension, the main improvements are:

  • Object-oriented interface

  • Prepared statement support (Annotation: Please refer to mysql related documents for prepare)

  • Multi-statement execution support

  • Transaction support

  • Enhanced debugging capabilities

  • Embedded service support

Note:

If you use MySQL 4.1.3 or newer, it is strongly recommended that you use this extension.

While providing an object-oriented interface, it also provides a process-oriented interface.

The mysqli extension is built using the PHP extension framework, and its source code is in ext/mysqli in the PHP source code directory.

For more information on the mysqli extension, see Mysqli.

What is PDO?

PHP data object is a database abstraction layer specification in PHP applications. PDO provides a unified API interface that allows your PHP application to not care about the specific database server system type to be connected. In other words, if you use PDO's API, you can seamlessly switch database servers whenever needed, such as from Firebird to MySQL, with only a small amount of PHP code modifications.

Other examples of database abstraction layers include JDBC in Java applications and DBI in Perl.

Of course, PDO also has its own advancements, such as a clean, simple, and portable API. Its main disadvantage is that it restricts you from using all the advanced database features provided by the later MySQL server. For example, PDO does not allow the use of multi-statement execution supported by MySQL.

PDO is implemented based on the PHP extension framework, and its source code is under ext/pdo in the PHP source code directory.

For more information about PDO, see PDO.

What is PDO’s MySQL driver?

PDO's MySQL driver is not an API, at least from a PHP programmer's perspective. In fact, PDO's MySQL driver is at the lower level of PDO itself and provides specific MySQL functions. Programmers directly call PDO's API, and PDO uses PDO's MySQL driver to complete interaction with the MySQL server.

PDO's MySQL driver is one of many PDO drivers. Other available PDO drivers include Firebird, PostgreSQL, etc.

PDO's MySQL driver is implemented based on the PHP extension framework. Its source code is in ext/pdo_mysql in the PHP source code directory. It exposes no API to PHP programmers.

For more information on the PDO MySQL extension, see MySQL (PDO).

What is the MySQL Native driver for PHP?

In order to interact with the MySQL database server, the mysql extension, mysqli extension, and the PDO MySQL driver all use underlying libraries that implement the necessary protocols. Previously, the only libraries available were the MySQL client library and libmysql.

However, libmysql contains interfaces that are not optimized for application interaction with PHP, and libmysql was originally designed for C applications. For this reason, the MySQL Native driver mysqlnd, was developed as a modified version of libmysql for PHP applications.

mysql, mysqli and PDO Mysql driver can be configured separately using libmysql or mysqlnd. mysqlnd is a library specially designed for PHP systems. It has a great improvement in memory and speed compared to libmysql. I really hope you try these improvements.

Note:

The MySQL Native driver can only be used when the MySQL server version is 4.1.3 and later.

The MySQL Native driver is implemented based on the PHP extension framework. The source code is located under ext/mysqlnd in the PHP source code directory. It exposes no interface to PHP programmers.

Feature comparison

The following table compares the functionality of the three main MySQL connection methods in PHP:

  PHP的mysqli扩展 PDO (使用PDO MySQL驱动和MySQL Native驱动) PHP的mysql扩展
引入的PHP版本 5.0 5.0 3.0之前
PHP5.x是否包含
MySQL开发状态 活跃 在PHP5.3中活跃 仅维护
在MySQL新项目中的建议使用程度 建议 - 首选 建议 不建议
API character set support Yes Yes No
Support of server-side prepare statement Yes Yes No
Support of client prepare statement No Yes No
Stored procedure support Yes Yes No
Multiple statement execution support Yes Most No
Does it support all MySQL4.1 or above functions?

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478600.htmlTechArticleOverview This section provides a brief introduction to the options available when you need to interact with the Mysql database during PHP application development. What is an API? An application programming interface (Application P...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? Apr 01, 2025 pm 03:03 PM

The page is blank after PHP connects to MySQL, and the reason why die() function fails. When learning the connection between PHP and MySQL database, you often encounter some confusing things...

How to efficiently integrate Node.js or Python services under LAMP architecture? How to efficiently integrate Node.js or Python services under LAMP architecture? Apr 01, 2025 pm 02:48 PM

Many website developers face the problem of integrating Node.js or Python services under the LAMP architecture: the existing LAMP (Linux Apache MySQL PHP) architecture website needs...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

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.

When using Django and MySQL to process hundreds of thousands to one or two million pieces of data, what kind of cache solution should a 4-core 8G memory server choose? When using Django and MySQL to process hundreds of thousands to one or two million pieces of data, what kind of cache solution should a 4-core 8G memory server choose? Apr 01, 2025 pm 11:36 PM

Using Django and MySQL to process large data volumes When using Django and MySQL databases, if your data volume reaches hundreds of thousands to one or two million...

How to share the same page on the PC and mobile side and handle cache issues? How to share the same page on the PC and mobile side and handle cache issues? Apr 01, 2025 pm 01:57 PM

How to share the same page on the PC and mobile side and handle cache issues? In the nginx php mysql environment built using the Baota background, how to make the PC side and...

How does Apache or Nginx work together with PHP: What is the difference between mod_php5, php-cgi and php-fpm? How does Apache or Nginx work together with PHP: What is the difference between mod_php5, php-cgi and php-fpm? Apr 01, 2025 pm 12:15 PM

The collaborative working mechanism between Apache or Nginx and PHP: Comparison of mod_php5, php-cgi and php-fpm is to use Apache or Nginx to build a web server and use PHP for backend...

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

See all articles