Hacker News new | ask | show | jobs
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?

1 comments

First of all, why would the size of the project be relevant to using OOP? If you mean "free to write procedural hacks", the "new" statement is not going to make much difference to the complexity of the code.

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.)