Three ways to execute SQL statements in PDO

黄舟
Release: 2023-03-07 17:18:02
Original
9528 people have browsed it

Three ways to execute SQL statements in PDO

In PDO, we can use three ways to execute SQL statements, namely exec() method, query method, and prepared statement prepare() and execute() methods~

In the previous article "Using the PDO constructor to connect to the database and DSN detailed explanation", we introduced Now that we have a detailed explanation of how to use constructors to connect databases and DSNs, this article will introduce to you three ways to execute SQL statements in PDO. We will introduce them one by one below!

First method: exec() method

#The exec() method returns the number of rows affected after executing the SQL statement, its syntax The format is as follows:

int PDO::exec(string statement)
Copy after login

The parameter satatement is the SQL statement to be executed. This method returns the number of rows affected when executing the SQL statement. It is usually used in INSERT, DELETE and UPDATE statements. Let's explain it with specific code. The code is as follows:

exec($query);//执行添加语句并返回受影响行数
    echo "数据添加成功,受影响行数为: ".$res;
}catch(Exception $e){
    die("Error!:".$e->getMessage().'
'); } ?>
Copy after login

The output result is:

Three ways to execute SQL statements in PDO

Second method: query() Method

query() method is used to return the result set after executing the query. The syntax format of this function is as follows:

PDOStatement PDO::query(string statement)
Copy after login

The parameter satatement is the SQL statement to be executed , it returns a PODStatement object! Please see the sample code below for details:

query($query);
    print_r($res);
}catch(Exception $e){
    die("Error!:".$e->getMessage().'
'); } ?>
Copy after login

The output result is:

Three ways to execute SQL statements in PDO

##Note:

1. Both query and exec can execute all sql statements, but the return values ​​are different.

2. Query can realize all exec functions.

3. When applying the select statement to exec, it always returns 0

4. If you want to see the specific results of the query, you can Complete the loop output through the foreach statement

The third method: prepared statements: prepare() statement and execute() Statement

Preprocessing statements include two methods: prepare() and execute(). First, prepare the query through the prepare() method, and then execute the query through the execute() method. You can also bind parameters to the execute() method through the bindParam() method. The syntax is as follows:

PDOStatement PDO::prepare(string statement[,array driver_options])
bool PDOStatement::execute([array input_parameters])
Copy after login

In In PDO, SQL query statements are executed through the preprocessing statements prepare() and execute(), and loops are used to cycle out the data. Let's take a look at the sample code in detail:

prepare($query);//准备查询语句
    $res->execute();
    while($result=$res->fetch(PDO::FETCH_ASSOC)){
        echo $result['id']." ".$result['username']." ".$result['password'].'
'; } }catch(Exception $e){ die("Error!:".$e->getMessage().'
'); }
Copy after login
The output result is as follows:

Three ways to execute SQL statements in PDO

Regarding the three methods of executing SQL in PDO, we will introduce it here. Is it very simple? Friends can test it locally. In the next article, we will introduce it to you. Continue to introduce the method of obtaining the result set in PDO. For details, please read "

Detailed Explanation of the fetch() Method of Obtaining the Result Set in PDO"!

The above is the detailed content of Three ways to execute SQL statements in PDO. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!