[Hibernate] (no subject)

2004-04-29 Thread LAY Oro
Do you Yahoo!?Win a $20,000 Career Makeover at Yahoo! HotJobs

RE: [Hibernate] Startup time

2004-04-29 Thread Lendvai Attila
did anyone has performance experiences with jaxb? I'm using it for a few projects, sometimes it has some glitches, but it works. I have no speed comparison, tough. - 101 :: At best, a LOT of code. Ugliness can be left up to the :: developer. ;) :: :: > -Original Message- :: > From:

FW: [Hibernate] Startup time

2004-04-29 Thread Lendvai Attila
a piece of info that came from someone... :: I have experience with Bea's (Apache now) XML Beans. You :: define the XML :: Schema, then generator generate classes for this schema. :: This classes produce valid XML, that confirm this schema and :: can "parse" :: the same typed XML via stream,

Re: FW: [Hibernate] Startup time

2004-04-29 Thread Christian Bauer
On 29 Apr (12:41), Lendvai Attila wrote: > a piece of info that came from someone... > > :: I have experience with Bea's (Apache now) XML Beans. You > :: define the XML > :: Schema, then generator generate classes for this schema. > :: This classes produce valid XML, that confirm this schema an

[Hibernate] Why does BatchingBatcher throw HibernateException?

2004-04-29 Thread Eric Mckenna
Group, Tried to upgrade to hibernate 2.1.3 today from 2.0 and discovered that one of my tests started to fail with "net.sf.hibernate.HibernateException: Batch update row count wrong: 0". The test was for verifying cascadingDeletes. After digging a little I found the root of my problem in net.sf.hi

[Hibernate] Hibernate and smart search

2004-04-29 Thread snpe
Hello I have bean with table propeties (web or swing form field) and I want next seach : - if property is null no seach for this property - if property is not null create query for value of property (where clause in table) - if value property btw 'TH%' or 'TH_' (value with character %, _

Re: [Hibernate] Startup time

2004-04-29 Thread Emmanuel Bernard
Hibernate read every single property of the DOM and use context/hierarchy a lot. rewriting it in SAX will lead to : - a *full* rewriting of Binder (not a fast job believe me) - not sure SAX is faster when you need to read the whole document. Ara Abrahamian wrote: 1/3rd of the total startup time