|
|
|
|
|
by foxpc
4689 days ago
|
|
Once, I decided to do a project by using basic SQL libraries, let's say this includes PDO as it's almost a standard. Then I thought, why would I use OOP (as PDO can only do that) if my project is not that big? I would not use PDO if I don't have a bigger project. But. If I have a bigger project, why would I use basic stuff like PDO and not some ORM library? |
|
On bigger projects, you may want to optimize certain queries beyond the limitations and overhead of the ORM abstraction, and go for straight SQL. (And since most ORM's use PDO, you can often steer away from complete duplication.)