Benchmark mysql, mysqli, pdo in PHP
Here’s an interesting article showing benchmarks between the various libraries used to query MySQL databases. It looks like the mysql and mysqli libraries work much faster than PDO.
| Extension | Req/Sec |
| mysqli |
164
|
| mysql |
162
|
| PDO |
88
|
| mysqli (prepared) |
86
|
| PDO (prepared) |
81
|
Link: PHP and MySQL, the future

