search
HomeBackend DevelopmentPHP ProblemHow to use PHP PDO extension to connect to MySQL database

In PHP applications, operations that require modification of the database are one of the common requirements. PHP Data Object (PDO) provides a safe and efficient way to operate on relational databases.

This article will introduce how to use PDO extension to connect to MySQL database, and demonstrate through examples how to use PDO to modify database data.

Connecting to MySQL database

Before using PDO, you first need to connect to the database. The following is a sample code for connecting to a MySQL database:

//数据库连接参数
$host = 'localhost';
$dbname = 'test';
$username = 'root';
$password = '';

//连接数据库
try {
    $db = new PDO("mysql:host=$host;dbname=$dbname", $username, $password);
} catch(PDOException $e) {
    echo $e->getMessage();
}

In the above code, we connect to the database through the constructor of the PDO class. First, specify the host name and database name of the MySQL database, and then pass in the user name and password to connect.

Modify database data

After the connection is successful, let’s look at how to use PDO to modify database data. We assume there is a student table containing id, name and age fields. Next, we will demonstrate how to use PDO to modify data on this table.

  1. Update a single field

We can use PDO's prepare() function to perform modification operations. The following is a code example for updating the record with id 1 in the student table:

//更新数据
$id = 1;
$newName = 'Tom';
$sql = "UPDATE student SET name=:name WHERE id=:id";
$stmt = $db->prepare($sql);
$stmt->bindParam(':id', $id, PDO::PARAM_INT);
$stmt->bindParam(':name', $newName, PDO::PARAM_STR);
$stmt->execute();

In the above code, we first define the id and new name value of the record to be updated. We then update name to $newName via the UPDATE statement, where :id and :name are placeholders. Next, we use PDO's prepare() function to prepare the SQL statement and bind the values ​​​​of $id and $newName through the bindParam() function. Finally, we call the execute() function to perform the update operation.

  1. Update multiple fields

If you want to update multiple fields, we can use a method similar to the above. The following is a code example that updates the name and age fields of the record with id 1 in the student table:

//更新数据
$id = 1;
$newName = 'Tom';
$newAge = 20;
$sql = "UPDATE student SET name=:name, age=:age WHERE id=:id";
$stmt = $db->prepare($sql);
$stmt->bindParam(':id', $id, PDO::PARAM_INT);
$stmt->bindParam(':name', $newName, PDO::PARAM_STR);
$stmt->bindParam(':age', $newAge, PDO::PARAM_INT);
$stmt->execute();

In the above code, we update name and age to new values ​​through the UPDATE statement. Note that we need to bind corresponding parameters for each field to be updated.

  1. Batch update records

If we want to update data in batches, we can use the transaction function of PDO. The following is a code example for updating multiple student records:

//更新多条数据
$students = array(
    array('id'=>1, 'name'=>'Tom', 'age'=>20),
    array('id'=>2, 'name'=>'Jack', 'age'=>22),
    array('id'=>3, 'name'=>'Lily', 'age'=>21)
);

try {
    $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $db->beginTransaction();
    $sql = "UPDATE student SET name=:name, age=:age WHERE id=:id";
    $stmt = $db->prepare($sql);
    foreach ($students as $student) {
        $stmt->bindParam(':id', $student['id'], PDO::PARAM_INT);
        $stmt->bindParam(':name', $student['name'], PDO::PARAM_STR);
        $stmt->bindParam(':age', $student['age'], PDO::PARAM_INT);
        $stmt->execute();
    }
    $db->commit();
} catch (PDOException $e) {
    $db->rollback();
    echo $e->getMessage();
}

In the above code, we define an array $students that contains the records to be updated. Then, we implemented the transaction operation by using the beginTransaction() function and the commit() function. In the loop, we bind the id, name and age parameters of each record and execute the SQL statements respectively.

Summary

Using PDO to modify database data is a safe and reliable method. In this article, we explain how to use PDO to connect to the MySQL database, and demonstrate through examples how to use PDO to modify database data. It is worth mentioning that we also introduced how to use the transaction function of PDO to update records in batches, which is a very practical skill.

The above is the detailed content of How to use PHP PDO extension to connect to MySQL database. For more information, please follow other related articles on the PHP Chinese website!

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
What Are the Latest PHP Coding Standards and Best Practices?What Are the Latest PHP Coding Standards and Best Practices?Mar 10, 2025 pm 06:16 PM

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

How to Implement message queues (RabbitMQ, Redis) in PHP?How to Implement message queues (RabbitMQ, Redis) in PHP?Mar 10, 2025 pm 06:15 PM

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

How Do I Work with PHP Extensions and PECL?How Do I Work with PHP Extensions and PECL?Mar 10, 2025 pm 06:12 PM

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

How to Use Reflection to Analyze and Manipulate PHP Code?How to Use Reflection to Analyze and Manipulate PHP Code?Mar 10, 2025 pm 06:12 PM

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea

PHP 8 JIT (Just-In-Time) Compilation: How it improves performance.PHP 8 JIT (Just-In-Time) Compilation: How it improves performance.Mar 25, 2025 am 10:37 AM

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

How to Use Asynchronous Tasks in PHP for Non-Blocking Operations?How to Use Asynchronous Tasks in PHP for Non-Blocking Operations?Mar 10, 2025 pm 04:21 PM

This article explores asynchronous task execution in PHP to enhance web application responsiveness. It details methods like message queues, asynchronous frameworks (ReactPHP, Swoole), and background processes, emphasizing best practices for efficien

How Do I Stay Up-to-Date with the PHP Ecosystem and Community?How Do I Stay Up-to-Date with the PHP Ecosystem and Community?Mar 10, 2025 pm 06:16 PM

This article explores strategies for staying current in the PHP ecosystem. It emphasizes utilizing official channels, community forums, conferences, and open-source contributions. The author highlights best resources for learning new features and a

How to Use Memory Optimization Techniques in PHP?How to Use Memory Optimization Techniques in PHP?Mar 10, 2025 pm 04:23 PM

This article addresses PHP memory optimization. It details techniques like using appropriate data structures, avoiding unnecessary object creation, and employing efficient algorithms. Common memory leak sources (e.g., unclosed connections, global v

See all articles

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

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor