Re: [Hibernate] [Maybe OT] odmg.jar licence

2003-10-28 Thread Christian Bauer
On 27 Oct (15:48), [EMAIL PROTECTED] wrote: does anybody know the exact licensing terms of the odmg.jar file? I was unable to find anything mentioning something about it. http://forum.hibernate.org/viewtopic.php?t=924813 -- Christian Bauer [EMAIL PROTECTED]

RE: [Hibernate] Business Rules

2003-10-28 Thread Eric Pugh
I lean towards not putting that kind of logic in some sort of Manager object.. I find that when you start mixing busienss logic with data objects, soon your business logic tier and data tier become all intertwined. I would lean towards OrderManager or something where you have a call like:

[Hibernate] SchemaExportTask + JBoss

2003-10-28 Thread Giovanni Formenti
Hallo, there is a way to use jboss-service.xml with Ant's SchemaExportTask? Now i create a hibernate.cgf.xml file ONLY to use it with this task but to run JBoss+Hibernate it's not necessary! I'd like to don't mantain hibernate.cfg.xml... Any idea? Gio

Re: [Hibernate] Business Rules

2003-10-28 Thread Christian Bauer
On 28 Oct (12:38), Eric Pugh wrote: I lean towards not putting that kind of logic in some sort of Manager object.. I find that when you start mixing busienss logic with data objects, soon your business logic tier and data tier become all intertwined. Interestingly, thats the reason for a

RE: [Hibernate] Business Rules

2003-10-28 Thread Urberg, John
I see the following two options: 1) Make the constructor on Order private and use a static factory method on Order to first verify the Customer does not have credit restrictions before creating the Order. 2) Make the constructor on Order package level access and add a method to Customer to

[Hibernate] ID Generator

2003-10-28 Thread Pragasam, Mukund (Consultant)
ID Generator If you wish to assign this issue/new feature to us, we can develop and contribute to the Hibernate open source. Requirement: 1) Multiple UidGenerator streams (say a stream per table in DB) 2) High performance Requirement - Transaction spanning across public and private network,

[Hibernate] MySQL/No PK Issue - Cannot Insert

2003-10-28 Thread Algirdas P. Veitas
Hi Folks, We have a table 'dummy' with no primary key (playing w/ the dealt cards) which upon trying to perform an insert, we get an unexpected error from mysql java.sql.SQLException: Column not found, message from server: "Unknown column 'hostName' in 'field list'" For other tables with

[Hibernate] Swarmcache, HashtableCacheProvider

2003-10-28 Thread Sandeep Dath
Title: Message Is SwarmCache support active in Beta 4? What about HashtableCacheProvider? Is the use of either of these documented Sandeep

Re: [Hibernate] ID Generator

2003-10-28 Thread Gavin King
To implement this requires an id generator with dependencies upon EJB APIs. ie. it requires a session bean. Hibernate does not currently have dependencies upon EJB. This is an appropriate thing to maintain as part of your application. Pragasam, Mukund (Consultant) wrote: ID Generator If you

Re: [Hibernate] Re: Re: CGLIB2

2003-10-28 Thread Gavin King
Wouldn't that mean that we would get both versions of CGLIB in our lib directory? Perhaps its better to just wait until Proxool has also upgraded. Perhaps we can put some pressure on them to get up to date. Chris Nokleberg wrote: On Tue, Oct 28, 2003 at 08:03:06PM +1100, Gavin King wrote: