Re: [Hibernate] dynamic schema update

2002-10-17 Thread Christoph Sturm
I will look at it when I have the time. I think they dont have alter table support too. If they have a nice structure we could add the stuff we need and submit it back. There are so many java persistency frameworks, and it would be nice if they would share some code that is common to them all,

Re: [Hibernate] dynamic schema update

2002-10-17 Thread Gavin King
Yeah, funny, I looked at this project about a year ago in the early stages of Hibernate but it didnt seem far enough advanced to actually use. Looking pretty good now. - Original Message - From: "Christoph Sturm" <[EMAIL PROTECTED]> To: "Gavin King" <[EMAIL PROTECTED]> Cc: "hibernate list"

Re: [Hibernate] dynamic schema update

2002-10-17 Thread Gavin King
> I have now added a Schemaupdater to hibernate. At the moment it only > adds missing colums to the schema, and creates tables if they are > missing. I have testet it with sql server. All the rest of hibernate > seems to still work, so I could commit it to cvs if you have no objections. Cool!! Go

[Hibernate] dynamic schema update

2002-10-17 Thread Christoph Sturm
Hi All! I have now added a Schemaupdater to hibernate. At the moment it only adds missing colums to the schema, and creates tables if they are missing. I have testet it with sql server. All the rest of hibernate seems to still work, so I could commit it to cvs if you have no objections. Someth

Re: [Hibernate] ClobType

2002-10-17 Thread Gavin King
Yes! I like this idea a lotfully. Good thinking :) - Original Message - From: "Jon Lipsky" <[EMAIL PROTECTED]> To: "Gavin King" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, October 17, 2002 3:58 PM Subject: Re: [Hibernate] ClobType > Shouldn't it be possible to create wrap

Re: [Hibernate] Suggestion: move cirrus into a src directory

2002-10-17 Thread Gavin King
I plan to do this when/if the packages get renamed to something other than cirrus.hibernate.*. For now, its very useful to have the full CVS history for the files.. - Original Message - From: "Max Rydahl Andersen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 17,

RE: [Hibernate] hibernate background?

2002-10-17 Thread Anton van Straaten
I'm not the author, so I can't answer most of your questions, except for one: > Do you know was hibernate ever deployed in a larger > commercial project? Say over 50 persistable classes? We're currently using Hibernate on a project with over 100 persisted classes. It has been integrated into a r

[Hibernate] hibernate background?

2002-10-17 Thread Miso Pach
Hello there! Your hibernate technology is really impressive! I have discovered it a couple of days ago and I am writing couple of quick protypes. It's really easy to use it! I am investigating a hibernate as an option for dealing with persistance for one of my projects at work. Could you tell me:

[Hibernate] Suggestion: move cirrus into a src directory

2002-10-17 Thread Max Rydahl Andersen
Hi! I was just wondering why you have placed the .java files package directory structure in the root of the Hibernate directory. Why not have a seperate src directory for it ? The current setup confuses e.g. eclipse especically if you build hibernate via ant - then it starts to see the build dire

Re: [Hibernate] ClobType

2002-10-17 Thread Gavin King
The fact that I don't know what I think is the main reason I've never added a ClobType before. I'm assuming that the best way would be to somehow provide access to the JDBC Clob object (and similarly for Blobs). Is this possible? Do you need to provide a seperate Holder class? I like the reader/wr