News Feed
Jobs Feed
Sections




News Archive
NetTuts.com:
PDO vs. MySQLi Which Should You Use?
February 22, 2012 @ 11:58:59

On the NetTuts.com site today there's a quick tutorial comparing two of the main database access methods available to PHP developers - PDO and MySQLi - based on performance and features they each have.

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.

The article starts with a summary of what each of the tools offers as far as features, things like the API to work with the interface, difficulty of making connections, use of prepared statements and performance. This is followed by a few code examples showing the same actions on each side:

  • Making a new connection
  • Databases supported (PDO has drivers)
  • Named parameters
  • Object mapping
  • Security
  • Performance
Ultimately, 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).
0 comments voice your opinion now!
pdo mysqli database interface compare feature performance


blog comments powered by Disqus

Similar Posts

Developer.com: Developing a Ajax-driven Shopping Cart with PHP and Prototype

Brian Swan's Blog: PDO Support for SQL Server!

Zend Developer Zone: Zend Technologies Updates Zend Core

Hasin Hayer's Blog: Converting standard wordpress into a SQLite powered multi user blogging platform

Gonzalo Ayuso: Building a Silex application from one Behat/Gherkin feature file


Community Events









Don't see your event here?
Let us know!


event introduction composer tool development example object language functional release framework unittest podcast interview zendframework2 opinion api code testing community

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework