vote up 19 vote down star
7

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?

flag

35% accept rate

12 Answers

vote up 2 vote down

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|flag
in sense of speed, could you give benchmarks? – daemonfire300 Nov 28 at 14:44
vote up 13 vote down

Well, you could argue with the object oriented aspect, the prepared statements, the fact that it becomes a standards, 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 :

<?php
class Person{

public $id;

public $first_name;

public $last_name


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


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

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

    /* MAGIC HAPPENS HERE */

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


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

    $dbh = null;
}
catch(PDOException $e)
    {
    echo $e->getMessage();
    }
?>
link|flag
@e-satis, +1 Wow never knew you could do that.. Thanks! – bguiz Nov 23 at 23:22
vote up 4 vote down

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|flag
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 at 16:55
vote up 3 vote down

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|flag
vote up -2 vote down

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|flag
Did you try the manual? php.net/manual/en/… – 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
"But can it crush cars?" – Till Sep 24 '08 at 14:13
vote up 2 vote down

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|flag
vote up 9 vote down

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|flag
Result binding with dynamic generated querys is possible, we do it at our applications. It however is a huge pain. – Pim Jager Apr 21 at 7:50
That is the right name. – Christopher W. Allen-Poole Nov 9 at 19:09
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
1  
MySQLi has prepared statements. – Kaitsuli Jul 7 at 9:59
vote up 0 vote down

♥ PDO 

link|flag
4  
-1 for a content-free post. This is as bad as replying with "lol". – Frank Crook Apr 10 at 6:18
vote up 0 vote down

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|flag
why did you decide to stick with mysqli? – enobrev Sep 25 '08 at 1:59
vote up 8 vote down

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|flag
I know this is being ridiculous, but it is "one fewer thing" not "one less thing"... – Christopher W. Allen-Poole Nov 9 at 19:24
it's fine to just edit the question – Theo Nov 11 at 17:28

Your Answer

Get an OpenID
or

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