In our place we're split between using mysqli and PDO for stuff like prepared statements and transaction support. Some projects use one, some the other. There is little realistic likelihood of us ever moving to another RDBMS.

I prefer PDO for the single reason that it allows named parameters for prepared statements, and as far as I am aware mysqli does not.

Are there any other pros and cons to choosing one over the other as a standard as we consolidate our projects to use just one approach?

link|improve this question

48% accept rate
feedback

17 Answers

Well, you could argue with the object oriented aspect, the prepared statements, the fact that it becomes a standard, etc. But I know that most of the time, convincing somebody works better with a killer feature. So there it is:

A really nice thing with PDO is you can fetch the data, injecting it automatically in an object. If you don't want to use an ORM (cause it's a just a quick script) but you do like object mapping, it's REALLY cool :

class Student {

    public $id;
    public $first_name;
    public $last_name

    public function getFullName() {
        return $this->first_name.' '.$this->last_name
    }
}

try 
{
    $dbh = new PDO("mysql:host=$hostname;dbname=school", $username, $password)

    $stmt = $dbh->query("SELECT * FROM students");

    /* MAGIC HAPPENS HERE */

    $stmt->setFetchMode(PDO::FETCH_INTO, new Student);


    foreach($stmt as $student)
    {
        echo $student->getFullName().'<br />';
    } 

    $dbh = null;
}
catch(PDOException $e)
{
    echo $e->getMessage();
}
link|improve this answer
11  
Incomprehensible, plus you throw acronyms without defining them. You should explicitly state the select fields to match the class names - SELECT * just doesn't cut it in this modern age. – dar7yl Feb 27 '10 at 21:20
48  
@dar7yl : -1 because "it's not a perfect post" ? From a less than 1K rep ? Lol man, I am sorry for you, your life must really suck for you to be in such a bad mood. – e-satis Mar 10 '10 at 10:16
5  
The -1 for criticizing the use of a SELECT * in an example is way off-base. It's an example, and just about any developer will realize that a better query is to be used in it's place. Great example! – Mattygabe Apr 13 '11 at 17:22
6  
is there a difference between the above and $mysqliResult->fetch_object("student"); ? – DesignerGuy Apr 15 '11 at 7:18
5  
@e-satis: Sorry for jumping in but getters and setters are necessary if you wish to control what happens when the variables are changed. Otherwise you simple can't guarantee the internal state of your object (this is especially an issue if you have another object inside). This is entirely language independent. @OZ_: Do ease up. Personal criticism will only put someone else on the defensive. – James Poulson Jun 4 '11 at 17:08
show 19 more comments
feedback

Moving an application from one database to another isn't very common, but sooner or later you may find yourself working on another project using a different RDBMS. If you're at home with PDO then there will at least be one thing less to learn at that point.

Apart from that I find the PDO API a little more intuitive, and it feels more truly object oriented. mysqli feels like it is just a procedural API that has been objectified, if you know what I mean. In short, I find PDO easier to work with, but that is of course subjective.

link|improve this answer
7  
I know this is being ridiculous, but it is "one fewer thing" not "one less thing"... – cwallenpoole Nov 9 '09 at 19:24
1  
it's fine to just edit the question – Theo Nov 11 '09 at 17:28
4  
@cwallenpoole, thanks - that's one fewer thing I need to learn now. – Xeoncross Jun 30 '11 at 18:06
1  
@cwallenpoole "one fewer thing" is possibly more correct but less common. – Caltor Nov 24 '11 at 11:17
feedback

I've started using PDO because the statement support is better, in my opinion. I'm using an ActiveRecord-esque data-access layer, and it's much easier to implement dynamically generated statements. MySQLi's parameter binding must be done in a single function/method call, so if you don't know until runtime how many parameters you'd like to bind, you're forced to use call_user_func_array() (I believe that's the right function name) for selects. And forget about simple dynamic result binding.

Most of all, I like PDO because it's a very reasonable level of abstraction. It's easy to use it in completely abstracted systems where you don't want to write SQL, but it also makes it easy to use a more optimized, pure query type of system, or to mix-and-match the two.

link|improve this answer
2  
Result binding with dynamic generated querys is possible, we do it at our applications. It however is a huge pain. – Pim Jager Apr 21 '09 at 7:50
1  
That is the right name. – cwallenpoole Nov 9 '09 at 19:09
feedback

Here's something else to keep in mind: For now (PHP 5.2) the PDO library is buggy. It's full of strange bugs. For example: before storing a PDOStatement in a variable, the variable should be unset() to avoid a ton of bugs. Most of these have been fixed in PHP 5.3 and they will be released in early 2009 in PHP 5.3 which will probably have many other bugs. You should focus on using PDO for PHP 6.1 if you want a stable release and using PDO for PHP 5.3 if you want to help the community.

link|improve this answer
2  
I think that the gains that PDO offers are worth understanding and working around the bugs. PHP itself is full of very aggravating bugs, some that we can't even work around efficiently, and yet it offers many benefits that cause us to use it instead of other options. – Brian Warshaw Nov 10 '09 at 16:55
4  
Uhm, strange, I never experienced any bug with PDO. And I use it a lot. – NikiC Jan 23 '11 at 10:49
feedback

PDO is the standard, it's what most developers will expect to use. mysqli was essentially a bespoke solution to a particular problem, but it has all the problems of the other DBMS-specific libraries. PDO is where all the hard work and clever thinking will go.

link|improve this answer
feedback

I'd go with PDO because MySQLi's binding is absurd. With PDO you can for most queries simply assign your variables by passing an array into an execute query. MySQLi makes binding a dynamic number of variables irritating to say the least.

link|improve this answer
feedback

One thing PDO has that MySQLi doesn't that I really like is PDO's ability to return a result as an object of a specified class type. (ie. $pdo->fetchObject('MyClass'). MySQLi's fetch_object() will only return a stdClass object.

link|improve this answer
9  
Actually, you can specify a class manually: "object mysqli_result::fetch_object ([ string $class_name [, array $params ]] )". stdClass is only used if you don't specify anything. – Andrioid Sep 4 '10 at 8:12
feedback

In sense of speed of execution MySQLi wins, but unless you have a good wrapper using MySQli, its functions dealing with prepared statements is awful.

There are still bugs in mine but http://gorilla3d.com/blog/entry/2008-08-03/improved-mysqli-db-wrapper-prepared-statements if anyone wants it.

So in short if you are looking for a speed gain then MySqli if you want it it for ease of use then PDO

link|improve this answer
2  
in sense of speed, could you give benchmarks? – daemonfire300 Nov 28 '09 at 14:44
3  
Jonathen Robson has done a decent speed comparison of the two at jonathanrobson.me/2010/06/mysqli-vs-pdo-benchmarks. Summary: inserts - almost equal, selects - mysqli is ~2.5% faster for non-prepared statements/~6.7% faster for prepared statements. Given how small the performance penalties are, the features and flexibility of using PDO generally outweigh the performance hit. – Adam Mar 8 '11 at 12:09
@Adam Thanks for linking to my blog! – jnrbsn Mar 23 at 19:33
feedback

In my benchmark script, each method is tested 10000 times and the difference of the total time for each method is printed. You should this on your own configuration, I'm sure results will vary!

These are my results:

  • "SELECT NULL" -> PGO() faster by ~ 0.35 seconds
  • "SHOW TABLE STATUS" -> mysqli() faster by ~ 2.3 seconds
  • "SELECT * FROM users" -> mysqli() faster by ~ 33 seconds

Note: by using ->fetch_row() for mysqli, the column names are not added to the array, I didn't find a way to do that in PGO. But even if I use ->fetch_array() , mysqli is slightly slower but still faster than PGO (except for SELECT NULL).

link|improve this answer
3  
What's PGO? And faster by 33 seconds?! I find that very hard to believe... – Alix Axel Jul 26 '11 at 4:15
feedback

Personally I use PDO, but I think that is mainly a question of preference.

PDO has some features that help agains SQL injection (prepared statements), but if you are careful with your SQL you can achieve that with mysqli, too.

Moving to another database is not so much a reason to use PDO. As long as you don't use "special SQL features", you can switch from one DB to another. However as soon as you use for example "SELECT ... LIMIT 1" you can't go to MS-SQL where it is "SELECT TOP 1 ...". So this is problematic anyway.

link|improve this answer
13  
MySQLi has prepared statements. – rFactor Jul 7 '09 at 9:59
1  
I back rFactor... – Halil Özgür Feb 10 '11 at 10:06
feedback

I use PDO. Learning different interfaces for every single database platform is not worth the effort, and the PDO interface is quite nice. DB specific functions of mysqli are absent in PDO, but you can still get the same job done using database specific queries.

link|improve this answer
Too bad some important drivers (such as Oracle) are tagged as experimental. – Álvaro G. Vicario Apr 30 '10 at 10:23
feedback

Another notable (good) difference about PDO is that it's PDO::quote() method automatically adds the enclosing quotes, whereas mysqli::real_escape_string() (and similars) don't:

PDO::quote() places quotes around the input string (if required) and escapes special characters within the input string, using a quoting style appropriate to the underlying driver.

link|improve this answer
feedback

I wrestled with this issue a few months ago and settled on sticking with MySQLi. It's extremely unlikely we'll be switching database platforms and there are few things I was trying to do that were much more direct in MySQLi than PDO.

link|improve this answer
4  
why did you decide to stick with mysqli? – enobrev Sep 25 '08 at 1:59
feedback

I use PDO for my personal projects only, and not for client's project , because of compatibility. Clients may have a lower version of PHP from their hosting provider .

link|improve this answer
feedback

@e-satis I agree with you. Ypu gave a nice example.

Another reasons, I use PDO over MySQLi are below:

  • It's cross database, meaning it's the same interface for different relation databases.
  • It helps protect against SQL injections. Hence its more secured.
link|improve this answer
feedback

PDO will make it a lot easier to scale if your site/web app gets really being as you can daily set up Master and slave connections to distribute the load across the database, plus PHP is heading towards moving to PDO as a standard.

PDO Info

Scaling a Web Application

link|improve this answer
feedback

There's one thing to keep in mind.

Mysqli does not support fetch_assoc() function which would return the columns with keys representing column names. Of course it's possible to write your own function to do that, it's not even very long, but I had really hard time writing it (for non-believers: if it seems easy to you, try it on your own some time and don't cheat :) )

link|improve this answer
2  
Did you try the manual? php.net/manual/en/mysqli-result.fetch-assoc.php – Till Sep 24 '08 at 13:49
Was implementing longer time ago, but yes I checked the manual. Does it work with prepared statements? I doubt... – michal kralik Sep 24 '08 at 13:56
7  
"But can it crush cars?" – Till Sep 24 '08 at 14:13
Actually, it has a curiously partial support. You can fetch arrays in regular queries but not in parametrized queries :-! – Álvaro G. Vicario Apr 30 '10 at 10:22
Why not delete an answer which is obviously wrong? – Majid Fouladpour Apr 19 at 3:04
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.