Re: [jruby-dev] Hibernate

2008-08-20 Thread Christian Seiler
I think you should stick to JPA as far as possible to be more independent. You can always cheat and get the Hibernate session by doing things like: if (this.entityManager.getDelegate() instanceof org.hibernate.Session) { org.hibernate.search.FullTextSession fts = org.hiber

Re: [jruby-dev] Hibernate

2008-08-19 Thread Charles Oliver Nutter
Ola Bini wrote: Hi friends, It's time to get a full Hibernate implementation in working order, so that is what I'm going to start work on tomorrow morning. Aim: focused development until I have something that can be used to implement a non-trivial database backed application. Before I get goi

Re: [jruby-dev] Hibernate

2008-08-19 Thread Thomas E Enebo
On Tue, Aug 19, 2008 at 12:18 PM, Nick Sieger <[EMAIL PROTECTED]> wrote: > On Tue, Aug 19, 2008 at 11:31 AM, Ola Bini <[EMAIL PROTECTED]> wrote: >> Hi friends, >> >> It's time to get a full Hibernate implementation in working order, so that >> is what I'm going to start work on tomorrow morning. Ai

Re: [jruby-dev] Hibernate

2008-08-19 Thread Nick Sieger
On Tue, Aug 19, 2008 at 11:31 AM, Ola Bini <[EMAIL PROTECTED]> wrote: > Hi friends, > > It's time to get a full Hibernate implementation in working order, so that > is what I'm going to start work on tomorrow morning. Aim: focused > development until I have something that can be used to implement a

Re: [jruby-dev] Hibernate

2008-08-19 Thread Wiktor Gworek
On Tue, Aug 19, 2008 at 6:31 PM, Ola Bini <[EMAIL PROTECTED]> wrote: > > - should it in fact be Hibernate or JPA? Hibernate is making a way for JPA and it's a much more innovative than JPA. I know that it's vender locking but Hibernate is a standard. > - how close should it be to the ActiveRec

[jruby-dev] Hibernate

2008-08-19 Thread Ola Bini
Hi friends, It's time to get a full Hibernate implementation in working order, so that is what I'm going to start work on tomorrow morning. Aim: focused development until I have something that can be used to implement a non-trivial database backed application. Before I get going, I meant to as