Re: [Hibernate] Hibernate aspects

2004-09-25 Thread Gavin King
Bill Burke wrote: I'm not sure about these, just writing what comes into my head: * setting FlushMode * session disconnect/reconnect * enabling filters in HB3 Hi all, I'm trying to brainstorm a list of aspects for Hibernate that could be written with JBoss AOP. The first one I can think of is: *

Re: [Hibernate] simple persistence solution needed

2004-09-25 Thread Gavin King
I think there could be three different pieces to this: (1) SQL rendering (2) JDBC wrappers (3) A metamodel for relational data Currently, Hibernate has classes for rendering things like inserts, updates, selects, outer joins, case where, in, etc in the .sql package. However, the APIs here are prob

Re: [Hibernate] Fetch strategy changes

2004-09-25 Thread Gavin King
Emmanuel Bernard wrote: (1) make lazy default to true on both and mapping elements; if a class cannot be proxied, laziness is transparently disabled; make it clear that we intend laziness to be used 99% of the time Most controversial part but I'm +1 from a pragmatic perspective. Howeve