logoalt Hacker News

laughing_mantoday at 7:29 PM1 replyview on HN

I've always found ORMs to be performance killers. It always worked out better to write the SQL directly. The idea that you should have a one-to-one correspondence between your data objects and your database objects is disastrous unless your data storage is trivial.


Replies

chopintoday at 7:43 PM

I worked with ORM (EclipseLink) and used SQL just fine.

When using JDBC I found myself quickly in implementing a poor mans ORM.

show 1 reply