I was playing around with creating a database abstraction class for learning purposes where you can create multiple connections to whatever databases you have drivers for by doing something like:
//Create multiple database connections
$db1 = new DatabaseFactory("MySQL","root","","localhost");
$db2 = new DatabaseFactory("MySQL","root","","localhost");
or...
$db = new DatabaseFactory("SQLite");
But I got to thinking about it, and unless you need to manage multiple connections with a factory object, there really isn't a need for something like this with the advent of PDO correct?
My question is, do you think it is useful to have further layers of abstraction to PDO and why?