What is difference between mysql,mysqli and pdo ?
Which one is the best suited to use with PHP-MYSQL?
|
| |||
|
feedback
|
|
There are (more than) three popular ways to use MySQL from PHP.
I would recommend using PDO with prepared statements. It is a well-designed API and will let you more easily move to another database (including any that supports ODBC) if necessary. | |||||||
feedback
|
|
Those are differents API to access a MySQL backend
So it depend what kind of code your want to produce, if you prefer object oriented layers or plain functions... My advice would be
Also my feeling, the mysql API would probably being deleted in future releases of | ||||
|
feedback
|
|
mysqli is the enhanced version of mysql. PDO extension defines a lightweight, consistent interface for accessing databases in PHP. Each database driver that implements the PDO interface can expose database-specific features as regular extension functions. | ||||
|
feedback
|
|
There is a table comparing the 3 API features. Use Mysqli whenever possible as is the latest launched after PDO and is and will be better maintained in the future. | |||||||
feedback
|