Jump to content

What is your prefered: PDO and MySQLi?


Ansego

Recommended Posts

  • 2 months later...

PDO is great because it add an abstraction to the database, regardless of the database server type.

 

For instance, if you use mysqli functions throughout your program, and then somebody else deploys the program but they are using postgres database server, then they would have to change every single function that interacts with a database for it to work. But, with PDO, they can just change one variable, and ta daaa!

PDO is great because it add an abstraction to the database, regardless of the database server type.

 

For instance, if you use mysqli functions throughout your program, and then somebody else deploys the program but they are using postgres database server, then they would have to change every single function that interacts with a database for it to work. But, with PDO, they can just change one variable, and ta daaa!

PDO is not a database abstraction. It provides you the same API across databases, but it does nothing to protected you against differences in syntax between those systems. For that you would need to use something like Doctrine's DBAL on top of PDO.

  • 2 weeks later...

I like PDO because of the named placeholders, but I use Doctrine DBAL, which has some bonuses over plain PDO. DBAL's documation is nice.

 

Check out DBAL's introduction:

http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/introduction.html

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.