(no version information, might be only in CVS)
PDO::prepare --
Prepares a statement for execution and returns a statement object
Descrizione
PDOStatement
PDO::prepare ( string statement [, array driver_options] )
Avvertimento |
Questa funzione è
SPERIMENTALE. Ovvero, il comportamento di questa funzione,
il nome di questa funzione, in definitiva tutto ciò che è documentato qui
può cambiare nei futuri rilasci del PHP senza preavviso. Siete avvisati, l'uso di questa
funzione è a vostro rischio. |
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.
Calling PDO::prepare() and PDOStatement::execute()
for statements that will be issued multiple times with different parameter
values optimizes the performance of your application and helps prevent SQL
injection attacks.