文字

PDO::prepare

(PHP 5 >= 5.1.0, PECL pdo >= 0.1.0)

PDO::prepare Prepares a statement for execution and returns a statement object

说明

public PDOStatement PDO::prepare ( string $statement [, array $driver_options = array() ] )

Prepares an SQL statement to be executed by the PDOStatement::execute() method. The SQL statement can contain zero or more named (:name) or question mark (?) parameter markers for which real values will be substituted when the statement is executed. You cannot use both named and question mark parameter markers within the same SQL statement; pick one or the other parameter style. Use these parameters to bind any user-input, do not include the user-input directly in the query.

You must include a unique parameter marker for each value you wish to pass in to the statement when you call PDOStatement::execute() . You cannot use a named parameter marker of the same name more than once in a prepared statement, unless emulation mode is on.

Note:

Parameter markers can represent a complete data literal only. Neither part of literal, nor keyword, nor identifier, nor whatever arbitrary query part can be bound using parameters. For example, you cannot bind multiple values to a single parameter in the IN() clause of an SQL statement.

Calling PDO::prepare() and PDOStatement::execute() for statements that will be issued multiple times with different parameter values optimizes the performance of your application by allowing the driver to negotiate client and/or server side caching of the query plan and meta information, and helps to prevent SQL injection attacks by eliminating the need to manually quote the parameters.

PDO will emulate prepared statements/bound parameters for drivers that do not natively support them, and can also rewrite named or question mark style parameter markers to something more appropriate, if the driver supports one style but not the other.

参数

statement

This must be a valid SQL statement template for the target database server.

driver_options

This array holds one or more key=>value pairs to set attribute values for the PDOStatement object that this method returns. You would most commonly use this to set the PDO::ATTR_CURSOR value to PDO::CURSOR_SCROLL to request a scrollable cursor. Some drivers have driver specific options that may be set at prepare-time.

返回值

If the database server successfully prepares the statement, PDO::prepare() returns a PDOStatement object. If the database server cannot successfully prepare the statement, PDO::prepare() returns FALSE or emits PDOException (depending on error handling).

Note:

Emulated prepared statements does not communicate with the database server so PDO::prepare() does not check the statement.

范例

Example #1 Prepare an SQL statement with named parameters

<?php

$sql  'SELECT name, colour, calories
    FROM fruit
    WHERE calories < :calories AND colour = :colour'
;
$sth  $dbh -> prepare ( $sql , array( PDO :: ATTR_CURSOR  =>  PDO :: CURSOR_FWDONLY ));
$sth -> execute (array( ':calories'  =>  150 ':colour'  =>  'red' ));
$red  $sth -> fetchAll ();
$sth -> execute (array( ':calories'  =>  175 ':colour'  =>  'yellow' ));
$yellow  $sth -> fetchAll ();
?>

Example #2 Prepare an SQL statement with question mark parameters

<?php

$sth  $dbh -> prepare ( 'SELECT name, colour, calories
    FROM fruit
    WHERE calories < ? AND colour = ?'
);
$sth -> execute (array( 150 'red' ));
$red  $sth -> fetchAll ();
$sth -> execute (array( 175 'yellow' ));
$yellow  $sth -> fetchAll ();
?>

参见

  • PDO::exec() - 执行一条 SQL 语句,并返回受影响的行数
  • PDO::query() - Executes an SQL statement, returning a result set as a PDOStatement object
  • PDOStatement::execute() - 执行一条预处理语句

用户评论:

[#1] chatelain dot cedric dot pro at gmail dot com [2015-03-11 11:24:05]

you can't use CREATE DATABASE with prepared statement.

$sql = $conn->prepare("DROP DATABASE IF EXISTS :dbname ;", 
array(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY));
$sql->execute(array(':dbname' => $dbname));

This will not work.
Anyone has an explanation ?

[#2] jesse dot chisholm at gmail dot com [2014-11-24 16:17:24]

@Simon Le Pine

Be aware that:

$search = "user";
$sth = db->prepare("SELECT * FROM users WHERE $search=:email");

and

$search = "email";
$sth = db->prepare("SELECT * FROM users WHERE $search=:email");

will produce two totally different prepared statements.

Doing this _will not work_:

$search = "user";
$sth = db->prepare("SELECT * FROM users WHERE $search=:email");
$sth->execute(array(email=>"yada"));
$search = "email";
$sth->execute(array(email=>"yada@ya.da"));

[#3] bg at enativ dot com [2014-03-12 15:11:29]

if you run queries in a loop, don't include $pdo->prepare() inside the loop, it will save you some resources (and time).

prepare statement inside loop:
for($i=0; $i<1000; $i++) {
$rs = $pdo->prepare("SELECT `id` FROM `admins` WHERE `groupID` = :groupID AND `id` <> :id");
$rs->execute([':groupID' => $group, ':id' => $id]);
}

// took 0.066626071929932 microseconds

prepare statement outside loop:
$rs = $pdo->prepare("SELECT `id` FROM `admins` WHERE `groupID` = :groupID AND `id` <> :id");
for($i=0; $i<1000; $i++) {
$rs->execute([':groupID' => $group, ':id' => $id]);
}

// took 0.064448118209839 microseconds

for 1,000 (simple) queries it took 0.002 microseconds less.
not much, but it worth mention.

[#4] pbakhuis [2014-01-29 15:42:13]

Noteworthy in my opinion is that if you prepare a statement but do not bind a value to the markers it will insert null by default. e.g.
<?php

$prep $db->prepare('INSERT INTO item(title, link) VALUES(:title, :link)');
$prep->execute();
?>

Will attempt to insert null, null into the item table.

[#5] php dot chaska at xoxy dot net [2013-07-05 20:04:57]

Note that for Postgres, even though Postgres does support prepared statements, PHP's PDO driver NEVER sends the prepared statement to the Postgres server in advance of the call to PDO::execute().  

Therefore, PDO::prepare() will never throw an error for things like faulty SQL syntax.  

It also means the server will not parse and plan the SQL until the first time PDO::execute() is called, which may or may not adversely affect your optimization plans.

[#6] Hayley Watson [2013-05-27 01:22:01]

It is possible to prepare in advance several statements against a single connection. As long as that connection remains open the statements can be executed and fetched from as often as you like in any order; their "prepare-execute-fetch" steps can be interleaved in whichever way is best.

So if you're likely to be using several statements often (perhaps within a loop of transactions), you may like to consider preparing all the statements you'll be using up front.

[#7] Anonymous [2013-04-18 17:23:38]

To those wondering why adding quotes to around a placeholder is wrong, and why you can't use placeholders for table or column names:

There is a common misconception about how the placeholders in prepared statements work: they are not simply substituted in as (escaped) strings, and the resulting SQL executed. Instead, a DBMS asked to "prepare" a statement comes up with a complete query plan for how it would execute that query, including which tables and indexes it would use, which will be the same regardless of how you fill in the placeholders.

The plan for "SELECT name FROM my_table WHERE id = :value" will be the same whatever you substitute for ":value", but the seemingly similar "SELECT name FROM :table WHERE id = :value" cannot be planned, because the DBMS has no idea what table you're actually going to select from.

Even when using "emulated prepares", PDO cannot let you use placeholders anywhere, because it would have to work out what you meant: does "Select :foo From some_table" mean ":foo" is going to be a column reference, or a literal string?

When your query is using a dynamic column reference, you should be explicitly white-listing the columns you know to exist on the table, e.g. using a switch statement with an exception thrown in the default: clause.

[#8] Kjetil H [2013-03-28 21:44:40]

Please note that the correct internal method signature is:
<?php public function prepare ($statement$driver_options = array()) ?>  

and NOT:
<?php public function prepare ($statement, array $driver_options = array()) ?> .

Redeclaring the method using the latter method signature throws a Stricts Standards error.

[#9] Simon Le Pine [2013-02-21 17:35:54]

Hi All,

First time posting to php.net, a little nervous.

After a bunch of searching I've learned 2 things about prepared statements:
1.) It fails if you enclose in a single quote (')
This fails: "SELECT * FROM users WHERE email=':email'"
This works: "SELECT * FROM users WHERE email=:email"
2.) You cannot search with a prepared statement
This fails: "SELECT * FROM users WHERE :search=:email"
This succeeds: "SELECT * FROM users WHERE $search=:email"

In my case I allow the user to enter their username or email, determine which they've entered and set $search to "username" or "email". As this value is not entered by the user there is no potential for SQL injection and thus safe to use as I have done.

Hope that saves someone else from a lot of searching.

[#10] orrd101 at gmail dot com [2012-04-30 00:46:36]

Don't just automatically use prepare() for all of your queries.

If you are only submitting one query, using PDO::query() with PDO::quote() is much faster (about 3x faster in my test results with MySQL).  A prepared query is only faster if you are submitting thousands of identical queries at once (with different data).

If you Google for performance comparisons you will find that this is generally consistently the case, or you can write some code and do your own comparison for your particular configuration and query scenario. But generally PDO::query() will always be faster except when submitting a large number of identical queries.  Prepared queries do have the advantage of escaping the data for you, so you have to be sure to use quote() when using query().

[#11] public at grik dot net [2012-03-07 12:23:32]

With PDO_MYSQL you need to remember about the PDO::ATTR_EMULATE_PREPARES option.

The default value is TRUE, like
$dbh->setAttribute(PDO::ATTR_EMULATE_PREPARES,true); 

This means that no prepared statement is created with $dbh->prepare() call. With exec() call PDO replaces the placeholders with values itself and sends MySQL a generic query string.

The first consequence is that the call  $dbh->prepare('garbage');
reports no error. You will get an SQL error during the $dbh->exec() call.
The second one is the SQL injection risk in special cases, like using a placeholder for the table name.

The reason for emulation is a poor performance of MySQL with prepared statements. Emulation works significantly faster.

[#12] pascal dot buguet at laposte dot net [2010-08-31 05:11:25]

PDO::CURSOR_SCROLL is ok with MSS.
You must install SQL Server Driver for PHP 2.0 CTP2 : SQLSRV20.EXE
and  the native client "Microsoft SQL Server 2008 R2 Native Client" : sqlncli.msi.

[#13] Robin [2010-03-04 05:01:58]

Use prepared statements to ensure integrity of binary data during storage and retrieval. Escaping/quoting by f.e. sqlite_escape_string() or PDO::quote() is NOT suited for binary data - only for strings of text.

A simple test verifies perfect storage and retrieval with prepared statements:

<?php

$num_values 
10000;

$db = new pdo'sqlite::memory:' );

$db->exec'CREATE TABLE data (binary BLOB(512));' );

// generate plenty of troublesome, binary data
for( $i 0$i $num_values$i++ )
{
    for( 
$val null$c 0$c 512/16$c++ )
        
$val .= md5mt_rand(), true );
    @
$binary[] = $val;
}

// insert each value by prepared statement
for( $i 0$i $num_values$i++ )
    
$db->prepare'INSERT INTO data VALUES (?);' )->execute( array($binary[$i]) );

// fetch the entire row
$data $db->query'SELECT binary FROM data;' )->fetchAllPDO::FETCH_COLUMN );

// compare with original array, noting any mismatch
for( $i 0$i $num_values$i++ )
    if( 
$data[$i] != $binary[$i] ) echo "[$i] mismatch\n";

$db null;

?>

[#14] sgirard at rossprint dot com [2009-10-29 15:15:06]

Maybe everyone else already knows this but...

If you have a routine that prepares/executes many insert or update statements for a sqlite db then you may want to make use of the pdo transactions. 

On some old hardware my query set went from 12 seconds to 1/3-1/2 second. 

-sean

[#15] richard at codevanilla.com [2009-09-11 04:44:31]

beware
PDO will emulate prepared statements/bound parameters for drivers that do not natively support them, and can also rewrite named or question mark style parameter markers to something more appropriate, if the driver supports one style but not the other.

This includes mySQL it seems so

<?php
try{ 
        
$sth1 $this->db1->prepare($t1, array(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY));
        
        }
        catch(
PDOException $e){
                return 
$this->pack('dbError'$e->getMessage());
        }
?>


does not and so will not throw the exception if your SQL is wrong.

You will need to check that $sth1 is not null.

[#16] daniel dot egeberg at gmail dot com [2009-05-24 01:06:09]

You can also pass an array of values to PDOStatement::execute(). This is also secured against SQL injection. You don't necessarily have to use bindParam() or bindValue().

[#17] admin at wdfa dot co dot uk [2009-04-09 21:52:12]

Note on the SQL injection properties of prepared statements.

Prepared statements only project you from SQL injection IF you use the bindParam or bindValue option.

For example if you have a table called users with two fields, username and email and someone updates their username you might run

UPDATE `users` SET `user`='$var'

where $var would be the user submitted text. 

Now if you did 
<?php
$a
=new PDO("mysql:host=localhost;dbname=database;","root","");
$b=$a->prepare("UPDATE `users` SET user='$var'");
$b->execute();
?>


and the user had entered  User', email='test for a test the injection would occur and the email would be updated to test as well as the user being updated to User.

Using bindParam as follows
  <?php
$var
="User', email='test";
$a=new PDO("mysql:host=localhost;dbname=database;","root","");
$b=$a->prepare("UPDATE `users` SET user=:var");
$b->bindParam(":var",$var);
$b->execute();
?>


The sql would be escaped and update the username to User', email='test'

[#18] ak_9jsz [2008-05-18 22:16:54]

Using cursors doesn't work with SQLite 3.5.9. I get an error message when it gets to the execute() method.

Some of you might be saying "duh!" but i was surprised to see TRIGGER support in SQLite, so i had to try. :)

I wanted to use Absolute referencing on a Scrollable cursor and i only wanted one column of data. So i used this instead of a cursor.

<?php

$dbo 
= new PDO('sqlite:tdb');
$sql 'SELECT F1, F2 FROM tblA WHERE F1 <> "A";';
$res $dbo->prepare($sql);
$res->execute();
$resColumn $res->fetchAll(PDO::FETCH_COLUMN0);

for(
$r=0;$r<=3;$r++)
    echo 
'Row '$r ' returned: ' $resColumn[$r] . "\n";

$dbo null;
$res null;
?>

[#19] Stan [2007-11-14 07:35:00]

Using prepared SELECT statements on a MySQL database prior to MySQL 5.1.17 can lead to SERIOUS performance degradation.

Quote from http://dev.mysql.com/doc/refman/5.1/en/query-cache.html :

>> The query cache is not used for server-side prepared statements before MySQL 5.1.17 <<

The MySQL query cache buffers complete query results and is used to satisfy repeated identical queries if the underlying tables do not change in the meantime - just what happens all the time in a typical web application. It speeds up queries by a several hundred to a several thousand percent.

Obviously, it doesn't make much sense to give up query caching for the relatively small performance benefit of prepared statements (i.e. the DBMS not having to parse and optimize the same query multiple times) - so using PDO->query() for SELECT statements is probably the better choice i you're connecting to MySQL < 5.1.17.

[#20] www.onphp5.com [2007-04-07 06:41:23]

Please note that the statement regarding driver_options is misleading:

"This array holds one or more key=>value pairs to set attribute values for the PDOStatement object that this method returns. You would most commonly use this to set the PDO::ATTR_CURSOR value to PDO::CURSOR_SCROLL to request a scrollable cursor. Some drivers have driver specific options that may be set at prepare-time"

From this you might think that scrollable cursors work for all databases, but they don't! Check out this bug report:
http://bugs.php.net/bug.php?id=34625

[#21] johniskew [2007-02-22 08:03:06]

If you need to create variable sql statements in a prepare statement...for example you may need to construct a sql query with zero, one, two, etc numbers of arguments...here is a way to do it without a lot of if/else statements needed to glue the sql together:

<?php

    
public function matchCriteria($field1=null,$field2=null,$field3=null) {
        
$db=DB::conn();
        
$sql=array();
        
$paramArray=array();
        if(!empty(
$field1)) {
            
$sql[]='field1=?';
            
$paramArray[]=$field1;
        }
        if(!empty(
$field2)) {
            
$sql[]='field2=?';
            
$paramArray[]=$field2;
        }
        if(!empty(
$field3)) {
            
$sql[]='field3=?';
            
$paramArray[]=$field3;
        }
        
$rs=$db->prepare('SELECT * FROM mytable'.(count($paramArray)>' WHERE '.join(' AND ',$sql) : ''));
        
$result=$rs->execute($paramArray);
        if(
$result) {
            return 
$rs;
        }
        return 
false;
    }

?>

[#22] william dot clarke at gmail dot com [2006-08-31 15:58:31]

Surely if you want to use prepared statements that way you should use the syntax in the second example:

eg. 

instead of:
select id,name from demo_de where name LIKE :name OR name=:name 

use:
select id,name from demo_de where name LIKE ? OR name=?

I believe you are supposed to either use distinct named parameters (name, name1) OR anonymous parameters (?s)

[#23] roth at egotec dot com [2006-08-30 01:58:13]

Attention using MySQL and prepared statements.
Using a placeholder multiple times inside a statement doesn't work. PDO just translates the first occurance und leaves the second one as is.

select id,name from demo_de where name LIKE :name OR name=:name

You have to use

select id,name from demo_de where name LIKE :name OR name=:name2

and bind name two times. I don't know if other databases (for example Oracle or MSSQL) support multiple occurances. If that's the fact, then the PDO behaviour for MySQL should be changed.

上一篇: 下一篇: