Pardon the newbie question.
My data model is really simple (two tables; 200 rows in one, 10,000 in the other; natural join between both).
I'm using Hibernate to attempt a simple read/update on these tables. Doing so keeps throwing OutOfMemory errors (1GB assigned to my JVM).
This seems very unlikely due to natural memory needs, and more likely that I am omitting some basic step in Hibernate.
I'm at the point where I've even replaced most of my actual Hibernate object accesses with direct SQL (absurd, I know). But even getCurrentSession().createSQLQuery(...) is resulting in OOM errors.
Can anyone point me in the right direction?