News Feed
Jobs Feed
Sections




News Archive
Gonzalo Ayuso's Blog:
Performance analysis using bind parameters with PDO and PHP
October 06, 2010 @ 08:57:02

Gonzalo Ayuso has posted the results of some performance testing he did with bind parameters in a PDO-based request for his application.

Some months ago a work mate asked me for the differences between using bind variables versus executing the SQL statement directly as a string throughout a PDO connection. Basically the work-flow of almost all database drivers is the same: Prepare statement, execute and fetch results. [...] What's the best one? Both method work properly. The difference is how databases manage the operation internally.

He gives two code examples, one with the bind parameters and one without, and the benchmark code he used to generate his statistics. It uses a PDO connection to execute several statements in a row both with bind parameters and without, measuring the time (with microtime) and outputting the results. His results show that while the simple update is faster, the bind parameter method has the added benefit of reusability for multiple queries.

0 comments voice your opinion now!
performance bind parameters pdo analysis benchmark


blog comments powered by Disqus

Similar Posts

Wez Furlong's Blog: PDO FUD; less anecdotes, more facts

Zend Developer Zone: Tutorial : Using Zend Framework Without PDO

Damian Sromek's Blog: [How to] Run PHPUnit tests using database 10x faster

Ariz Jacinto's Blog: Compiling PHP with MSSQL Server's Native ODBC Driver for Linux as a PDO Driver

Ilia Alshanetsky\'s Blog: php|tek 2006


Community Events











Don't see your event here?
Let us know!


api interview development code database functional application community testing language series podcast phpunit framework zendframework2 example release composer opinion introduction

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework