Reputation: 144
I have read nothing but good things about PHP's PDO library. Today in my reading I came across this link that says Oracle discourages the use of PDO when accessing Mysql. The comment stated that PDO doesn't offer access to all the features that Mysql has to offer.
My question is this:
Upvotes: 0
Views: 132
Reputation: 31624
I'm not sure there's anything PDO can't do. There are things php/mysql can't do that php/mysqli or PDO can. The only thing Oracle really pushes is that you use the mysqlnd driver with PHP (which is a good idea whether or not you use PDO)
Upvotes: 1