[Hibernate] EntityPersister subclassable?

2002-11-22 Thread Chris Winters
I'm finally getting back around to implementing a solution so I can have a generated field as part of a composite key. (I started back at the end of September/beginning of October but got pulled away for other tasks.) When I first looked at this cirrus.hibernate.persister.EntityPersister was fina

Re: [Hibernate] HELP: Hibernate and Oracle

2002-11-22 Thread Gavin King
I've never seen this problem before, but it looks like Oracle doesn't like the idea of calling Connection.setTransactionIsolation() after callong Connection.setAutocommit(false) This is not a problem for other platforms, but I will swap the order anyway... - Original Message - From: "L

[Hibernate] HELP: Hibernate and Oracle

2002-11-22 Thread Laurent Vanzeune
Hi, Hibernate: 1.1.8 Oracle: 9.0.1i I first tested my code against SQL Server then I also need tom make it work under Oracle. When using oracle, and DBCP as connection provider (if set to C3PO or driver manager it works fine), I received the following exception: [INFO] Environment - -Hibernate 1

Re: [Hibernate] Binary Expressions in Collections

2002-11-22 Thread Gavin King
Perhaps if you explain the actual SQL you want generated for select foo from my.Foo where foo.bar.values like "baz%" then I will understand your requirements better. As far as I can tell, what you would really want is either select foo from my.Foo where "baz%" like all foo.bar.elements