I've heard that PDO can do some ORM. Is it a good idea to stick with that or should I consider some alternatives that use PDO to do ORM?
In short, what I want to do: I want to automatically map table fields to instance variables. Getters and Setters are created manually. However, I could also think of making an associative array as ivar and then just assign the record set to that array. The getters/setters then just access that array with the appropriate key. But I wonder how PDO could help here to get that done easier?