RE: [Hibernate] How about a new mailinglist for announce?

2003-01-20 Thread Sven Welte
On Tue, 21 Jan 2003, Ara Abrahamian wrote: > From my experience with XDoclet, these kinds of blabla-announce lists > don't work well. Xdoclet-user has hundreds of subscribers, > xdoclet-announce has only tens. > > Ara. Hmm. I don't think that you can compare Hibernate and XDoclet here. If I have

[Hibernate] How about a new mailinglist for announce?

2003-01-20 Thread Sven Welte
Hi folks, I would like to see a low volume mailing list that keeps me "up to date" without monitoring forum and devel-mailingslist because I think the messagecount will increase even more in the future (which i not bad). Things that could be included * Announcement of new releases (final and bet

RE: [Hibernate] Possible Bug in HQL

2002-12-27 Thread Sven Welte
[snip] > On the other hand, your proposal is no good either, since > it does not return green Foos with bar=null. So it seems > to me like both are imperfect, but existing functionality > is better, because we can force what we mean by adding > "distinct". Ok, I'm happy with the use of "distinct".

[Hibernate] Possible Bug in HQL

2002-12-27 Thread Sven Welte
Ok, here are some tables. CREATE TABLE Foo ( id int PRIMARY KEY, color VARCHAR, barId int, FOREIGN KEY (barId) REFERENCES Bar ) CREATE TABLE Bar ( id int PRIMARY KEY, someValue VARCHAR ) In the mapping there is a association between Foo and Bar. Here is a query in HQL: SELECT foo F

Re: [Hibernate-devel] Versioning via Timestamps

2002-08-21 Thread Sven Welte
> > I want you to know that "ant clean" wipes out the directory hibernate is > >installed due to relative-path-addressing problems (ok, thats easy to > fix). > > heheh true. thats fixed now. I just thought that hibernate might be a "cleanroom" implementation. > >Feature Request: > >It would be ni

[Hibernate-devel] Versioning via Timestamps

2002-08-20 Thread Sven Welte
Hi, just downloaded hibernate1.1 beta 6 and tried to build my own hibernate.jar. I want you to know that "ant clean" wipes out the directory hibernate is installed due to relative-path-addressing problems (ok, thats easy to fix). Feature Request: It would be nice if hibernate could support versio

Re: [Hibernate-devel] bug in hibernate-0.9.8

2002-03-31 Thread Sven Welte
> private Connection getConnection(); > private Session getHibernateSession() > { > Session s = null; > try > { > Datastore ds = > Hibernate.createDatastore(); > ds = > ds.storeFile("/home/son/mapping.xml"); > SessionFactory se