Skip to content
Advertisement

PDO’s query vs execute

Are they both do the same thing, only differently?

Is there any difference besides using prepare between

JavaScript

and

JavaScript

?

Advertisement

Answer

query runs a standard SQL statement without parameterized data.

execute runs a prepared statement which allows you to bind parameters to avoid the need to escape or quote the parameters. execute will also perform better if you are repeating a query multiple times. Example of prepared statements:

JavaScript

Best practice is to stick with prepared statements and execute for increased security.

See also: Are PDO prepared statements sufficient to prevent SQL injection?

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement