What is difference between mysql,mysqli and pdo ?
Which one is the best suited to use with PHP-MYSQL?
|
|
|||
|
|
|
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. |
|||||||
|
|
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 |
||||
|
|
|
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. |
||||
|
|
|
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. |
|||||||||
|
|
Specifically, the MySQLi extension provides the following extremely useful benefits over the old MySQL extension.. OOP Interface (in addition to procedural) Prepared Statement Support Transaction + Stored Procedure Support Nicer Syntax Speed Improvements Enhanced Debugging PDO Extension PHP Data Objects extension is a Database Abstraction Layer. Specifically, this is not a MySQL interface, as it provides drivers for many database engines (of course including MYSQL). PDO aims to provide a consistent API that means when a database engine is changed, the code changes to reflect this should be minimal. When using PDO, your code will normally "just work" across many database engines, simply by changing the driver you're using. In addition to being cross-database compatible, PDO also supports prepared statements, stored procedures and more, whilst using the MySQL Driver. |
|||
|
|