When accessing a database in PHP, we have two choices: MySQLi and PDO. So what should you know before choosing one? The differences, database support, stability, and performance concerns will be outlined in this article.
Summary
ConnectionIt's a cinch to connect to a database with both of these:
Please note that these connection objects / resources will be considered to exist through the rest of this tutorial. API SupportBoth PDO and MySQLi offer an object-oriented API, but MySQLi also offers a procedural API - which makes it easier for newcomers to understand. If you are familiar with the native PHP MySQL driver, you will find migration to the procedural MySQLi interface much easier. On the other hand, once you master PDO, you can use it with any database you desire! Database SupportThe core advantage of PDO over MySQLi is in its database driver support. At the time of this writing, PDO supports 12 different drivers, opposed to MySQLi, which supports MySQL only. To print a list of all the drivers that PDO currently supports, use the following code:
What does this mean? Well, in situations when you have to switch your project to use another database, PDO makes the process transparent. So all you'll have to do is change the connection string and a few queries - if they use any methods which aren't supported by your new database. With MySQLi, you will need to rewrite every chunk of code - queries included. Named ParametersThis is another important feature that PDO has; binding parameters is considerably easier than using the numeric binding:
...opposed to the MySQLi way:
The question mark parameter binding might seem shorter, but it isn't nearly as flexible as named parameters, due to the fact that the developer must always keep track of the parameter order; it feels "hacky" in some circumstances. Unfortunately, MySQLi doesn't support named parameters. Object Mapping
Both PDO and MySQLi can map results to objects. This comes in handy if you don't want to use a custom database abstraction layer, but still want ORM-like behavior. Let's imagine that we have a
Without object mapping, we would need to fill each field's value (either manually or through the constructor) before we can use the This allows us to predefine these properties before the object is even constructed! For isntance:
Security
Lets say a hacker is trying to inject some malicious SQL through the 'username' HTTP query parameter (GET):
If we fail to escape this, it will be included in the query "as is" - deleting all rows from the
As you can see,
Advertisement PerformanceWhile both PDO and MySQLi are quite fast, MySQLi performs insignificantly faster in benchmarks - ~2.5% for non-prepared statements, and ~6.5% for prepared ones. Still, the native MySQL extension is even faster than both of these. So if you truly need to squeeze every last bit of performance, that is one thing you might consider. SummaryUltimately, PDO wins this battle with ease. With support for twelve different database drivers (eighteen different databases!) and named parameters, we can ignore the small performance loss, and get used to its API. From a security standpoint, both of them are safe as long as the developer uses them the way they are supposed to be used (read: prepared statements).
refer: http://code./tutorials/pdo-vs-mysqli-which-should-you-use--net-24059 |
|
來自: 極客黨 > 《Database》