Re: [hibernate-dev] Fail fast feature for Hibernate Validator

2010-10-05 Thread Max Rydahl Andersen
On Oct 5, 2010, at 17:43, Emmanuel Bernard wrote: > If we /really/ want stopAfterNFailures, I'd go straight to it. It's easy to > implement and will confuse people less. But the number of failures will be a > guaranteed to be above int (if there are enough ;) ) and the order will be > unspecif

Re: [hibernate-dev] Discussion of services

2010-10-04 Thread Max Rydahl Andersen
I remember Mark P. mentioning they (drools) have some basic bootstrap for their core which is simplistic and then if containers want it can use another DI to set it up for user visibile customization (i.e. spring, cdi etc.) Not sure how they did it though - but might be worth a look ? /max On

Re: [hibernate-dev] Table and quoted names

2010-10-04 Thread Max Rydahl Andersen
>> Totally agreedI guess the question is though if that is going to part of >> what we >> today call Dialect or something else (If i follow Steve's comments right) > > The vast majority of databases out there have more or less decent JDBC > drivers. Actually, that ain't true when it comes t

Re: [hibernate-dev] Table and quoted names

2010-10-01 Thread Max Rydahl Andersen
>> Ok, saw it now. >> >> I'm eery to requiring databasemetadata access as part of the Table model >> since I (at least until now) have >> been using them extensively without wanting to require a running db...(which >> is not a requirement today). > > I have to be honest that I fail to grasp whe

Re: [hibernate-dev] Table and quoted names

2010-10-01 Thread Max Rydahl Andersen
>> I'd like to figure out if this could be determined by looking at the >> DatabaseMetaData before making the Dialects have to specify this. With >> the Dialects its just another thing we need to "keep in synch". Not >> sure if you saw my comments in ObjectName wrt DatabaseMetaData, but >> those

Re: [hibernate-dev] Table and quoted names

2010-10-01 Thread Max Rydahl Andersen
>> >> Looking at it reminded me of >> http://opensource.atlassian.com/projects/hibernate/browse/HHH-1476 >> >> The problem of the separators actually having to be dialect controlled and >> even in some cases schema >> can be skipped resulting in catalog..table. Worth covering ? > > I'd like to

Re: [hibernate-dev] Table and quoted names

2010-10-01 Thread Max Rydahl Andersen
. >> >> On Thu, 2010-09-30 at 17:21 +0200, Max Rydahl Andersen wrote: >>> missing attachement? >>> >>> /max >>> >>> On Sep 30, 2010, at 15:01, Steve Ebersole wrote: >>> >>>> True enough. Attached is the code I develop

Re: [hibernate-dev] Table and quoted names

2010-09-30 Thread Max Rydahl Andersen
missing attachement? /max On Sep 30, 2010, at 15:01, Steve Ebersole wrote: > True enough. Attached is the code I developed for Hibernate 4 to handle > this better. Care to gander? > > > On Thu, 2010-09-30 at 15:09 +0300, Dmitry Geraskov wrote: >> Hi, guys, >> while I was fixing some bug in h

Re: [hibernate-dev] Please provide guide line

2010-09-30 Thread Max Rydahl Andersen
hibernate.org, click doc. /max On Sep 30, 2010, at 08:02, Brajesh Patel wrote: > Hello all, > Please provide beginner guide for learn hibernate. > Thanks in advance. > > -- > Thanks > Brajesh Patel > ___ > hibernate-dev mailing list > hibernate-dev@l

Re: [hibernate-dev] Annotation name for column-level read/write expression

2010-09-28 Thread Max Rydahl Andersen
TransformOnRead TransformOnWrite ? MutateOnRead/Write ? /max On Sep 28, 2010, at 15:28, Steve Ebersole wrote: > "access" does not capture the essence of what you are doing though which > is mutating values to and fro. > > On Tue, 2010-09-28 at 08:57 -0400, Chris Bredesen wrote: >> read + write

[hibernate-dev] .project/.classpath removed from hibernate tools trunk - use m2eclipse or similar

2010-09-23 Thread Max Rydahl Andersen
Hi, FYI I removed .classpath and .project from hibernatetools core project now that the pom.xml file is "sane" enough to be used from within m2eclipse. Thus if you update use m2eclipse to get a proper .project/.classpath instead of the current sometime machine specific metadata. Thanks, Max __

Re: [hibernate-dev] Message-Templates from multiple JARs

2010-02-16 Thread Max Rydahl Andersen
- "Emmanuel Bernard" wrote: > I don't see i18n as something that should necessarily be packaged > inside a component. Resource keys are generally grouped in one or two > files for the overall application (so that fixing a typo is quick). You must be developing small or monolith applications

Re: [hibernate-dev] Unable to dispatch Entities in different jars

2010-02-05 Thread Max Rydahl Andersen
This discussion is super relevant for multi module project development in IDE's too. I've followed up - I hope emmanuel do too since this one actually is one of my biggest issues I have when it comes to "autoscanning". /max - "Bouiaw" wrote: > Thanks for your answer. > > I made some tes

[hibernate-dev] Welcome Dima Geraskov as Hibernate Tools committer

2009-10-09 Thread Max Rydahl Andersen
Hi, Welcome Dima as a committer to hibernate svn to work on Hibernate Tools. His username is dgeraskov in case you bump into him in the svn logs ;) /max ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listin

Re: [hibernate-dev] Unable to compile core

2009-10-01 Thread Max Rydahl Andersen
remove the line that says something about javassist byte enhancement. It breaks 9 out of 10 for me too. afaik, its some plugin Steve put into to generate the Version string - but it fails to work on my 3 machines, but work fine on Steve's ... I need one of those ;) /max Hardy Ferentschik wro

Re: [hibernate-dev] trunk project layout

2009-09-11 Thread Max Rydahl Andersen
>> 1 project with submodules, all have the same version thus the parent is >> the reactor ? >> >> btw. I remember we initially did this parent were put in a dir on its >> own to make eclipse >> happy - that is not really a concern anymore since later eclipse >> versions can handle >> having a root

Re: [hibernate-dev] trunk project layout

2009-09-11 Thread Max Rydahl Andersen
In the words of Arnaud (commenter on the blog), isn't the GateIn approach what you want ? 1 project with submodules, all have the same version thus the parent is the reactor ? Different discussions. The "GateIn approach" is *functionally* no different than what we have today Max. The o

Re: [hibernate-dev] trunk project layout

2009-09-11 Thread Max Rydahl Andersen
In the words of Arnaud (commenter on the blog), isn't the GateIn approach what you want ? 1 project with submodules, all have the same version thus the parent is the reactor ? btw. I remember we initially did this parent were put in a dir on its own to make eclipse happy - that is not really a

Re: [hibernate-dev] Patch for HHH-272: Custom SQL for column gets and sets

2009-09-10 Thread Max Rydahl Andersen
thanks - I forgot the "insert sql literals into the insert/update/query sql" requirement :) /max Rob Hasselbaum wrote: On 09/07/2009 06:37 PM, Max Rydahl Andersen wrote: What is this doing that a parameterized custom type can't do ? Is this "just" to get a cleaner h

Re: [hibernate-dev] Is Eclipse RCPed application including hibernate library covered under LGPL?

2009-08-18 Thread Max Rydahl Andersen
> It seems that eclipse RCP is static link, > because all related jars (all related libraries) are included > in RCPed executable form automatically. > Users can replace the hibernate.jar in your RCP app. Users can rebuild hibernate.jar and just put their own. assuming of course that you are

Re: [hibernate-dev] Is Eclipse RCPed application including hibernate library covered under LGPL?

2009-08-17 Thread Max Rydahl Andersen
Your application does not need to be LGPL as long as it follows the rules layed out in LGPL. i.e. as long as user can replace the hibernate jars with their own - and unless you are doing really funky things in your Eclipse RCP app then that is all doable by modifiying the plugin directory or .zi

Re: [hibernate-dev] Can we have an update on Maven central repository syncing?

2009-06-25 Thread Max Rydahl Andersen
use jboss maven repository for jboss stuff. /max Max Bowsher wrote: With Hibernate Core 3.3.2 just released, it seems like a relevant time to ask: What happened to the ongoing struggle to get jboss artifacts synced to maven central? Could we please have an update of what the current status is

Re: [hibernate-dev] NamingStrategy Enhancement

2009-06-18 Thread Max Rydahl Andersen
The biggest concern is compatibility so this would be for some major revision... And what kind of type would you send in ? I guess the hibernate type. /max Mike C wrote: Hi, I wish to implement a NamingStrategy which translates the 'id' field of a Person entity to have a column name of 'pk_p

Re: [hibernate-dev] Wishing to work on Hibernate's DDL capabilities

2009-06-10 Thread Max Rydahl Andersen
Splitting out dml/ddl so one could build something like a "structural compare of configurations" to create a better migration would be interesting; though I really don't believe dynamic mappings that also dynamically decided the db-layout and statements is going to be more than a quick prototypi

[hibernate-dev] Re: recommend hibernate tools version for bundling with Seam 2.2

2009-06-08 Thread Max Rydahl Andersen
It appears the latest JBoss Tools 3.0.1 are using some build of Hibernate Tools 3.2.4.GA? JBoss/Hibernate tools includes the official release of Hibernate tools so it is not "some" build, it is *the* build. I guessed it from the plugin version being named "3.2.4.GA", but actually the hibe

[hibernate-dev] Re: recommend hibernate tools version for bundling with Seam 2.2

2009-06-07 Thread Max Rydahl Andersen
Unless Hibernate Core have been tested against Hibernate 3.3 then we don't have one. I simply have not had any time to do it - if you try do the update, please let me know if you find some problems and i'll get them fixed. Use the latest one from jboss.org/tools download. Hibernate tools outpu

Re: [hibernate-dev] Re: Antlr3 / JDK 1.5

2009-05-07 Thread Max Rydahl Andersen
Did you see my question/objections/inquiry this time ? :) /max Max Rydahl Andersen wrote: Hi Steve, I asked: Is antrl3 capable to coexist with antrl2 in the same classloader/app/vm ? p.s. your email st...@redhat.com bounces with errors. /max Steve Ebersole wrote: OK, my email

Re: [hibernate-dev] Re: Antlr3 / JDK 1.5

2009-05-02 Thread Max Rydahl Andersen
Hi Steve, I asked: Is antrl3 capable to coexist with antrl2 in the same classloader/app/vm ? p.s. your email st...@redhat.com bounces with errors. /max Steve Ebersole wrote: OK, my email (hibernate.org) is finally back. Perhaps just heard no responses because it was down? Any objections?

Re: [hibernate-dev] Re: Antlr3 / JDK 1.5

2009-05-02 Thread Max Rydahl Andersen
I asked: Is antrl3 capable to coexist with antrl2 in the same classloader/app/vm ? /max Steve Ebersole wrote: OK, my email (hibernate.org) is finally back. Perhaps just heard no responses because it was down? Any objections? On Mon, 2009-04-20 at 08:54 -0500, Steve Ebersole wrote: I

Re: [hibernate-dev] Antlr3 / JDK 1.5

2009-04-22 Thread Max Rydahl Andersen
Is antrl3 capable to coexist with antrl2 in the same classloader/app/vm ? /max Chris Bredesen wrote: No issues here. -CB Steve Ebersole wrote: I am working wth Alexandre Porcelli on some major changes to the HQL translators. Since the changes are drastic we decided to move from Antlr2 to An

Re: [hibernate-dev] want to join hibernate development community

2009-04-15 Thread Max Rydahl Andersen
hey scared me at first, when i first run them after the initial download and saw failures, but i guess i didn't read the results correctly because the hibernate-core project test went ok. Speak up if you got questions about them :) /max On Tue, Apr 14, 2009 at 6:51 PM, Ma

Re: [hibernate-dev] want to join hibernate development community

2009-04-14 Thread Max Rydahl Andersen
i never thought hibernate was simple, my problem is that i don't see how anyone outside jboss personal can actually create fixes (patches or commits) without internal overview of hibernate. and jumping head first is actually what a new developer in jboss would need to do, even if he did had p

Re: [hibernate-dev] New to Dev List - Have a Patch

2009-03-11 Thread Max Rydahl Andersen
Lets move this to the HBX jira. /max Hi Everyone, I'm working on a project using the Hibernate ant tools to generate DAO objects for use inside a Spring context. The existing DAO exporter with suffix "Home" uses JNDI to get the SessionFactory. However, Spring has its own HibernateDaoSupport

Re: [hibernate-dev] hibernate-tools jira HBX-577

2009-02-20 Thread Max Rydahl Andersen
Hi, This is my proposal to solve JIRA issue HBX-577 "hbm2java for annotation from existing inheritance mapping" I figured out how-to do "joined-subclass" and "table-per-class-herarchy" but couldn't test it. This solution relies on tag, example: attribute="class-inheritance-type">si

Re: [hibernate-dev] hibernate-tools JUnit template

2009-02-18 Thread Max Rydahl Andersen
Hi, Good evening Lords & Ladies: This is a simple .ftl template to generate a trivial JUnit test code. Any ideas & improvements are welcome ;) thanks for the template, but it looks *very* system specific so not sure what you want me to comment on ? /max _

Re: [hibernate-dev] SessionImpl.list(CriteriaImpl criteria) returns an empty list when no implementors exist

2009-02-16 Thread Max Rydahl Andersen
you need to explain more specifically what you mean by "if the implementators exists" ? i.e. an example. /max Hi all, in using hibernate v31final SessionImpl.list(CriteriaImpl criteria), I had an issue where hibernate would return an empty list when no implementors existed for the entity nam

Re: [hibernate-dev] Batching queries

2009-01-26 Thread Max Rydahl Andersen
I always wondered about the usefulness of something like that http://davybrion.com/blog/2009/01/nhibernate-and-future-queries/ Nice feature. Aside from SQL server, any other database supporting such a thing (ie query batch on unrelated queries)? Sybase ? Oracle has multiple resultset returns

Re: [hibernate-dev] Interested in new development

2008-12-04 Thread Max Rydahl Andersen
http://hibernate.org/6.html has all the info or link to it. /max Hi I need some details reagrding the environment setup and all before starting. where can i get the details about? Thanks Thamayanthi On Thu, Dec 4, 2008 at 12:56 PM, John Mazzitelli <[EMAIL PROTECTED]> wrote: > Though I h

Re: [hibernate-dev] exposing statistics easier (HHH-3593 solution)

2008-11-21 Thread Max Rydahl Andersen
plop this hibernate-jmx module (.jar?) in their app deployment and have it "just work"? I'm curious if this is going to be shipped with, say, JBossAS, so its already available to people without downloading it separately. I'll see if I can read up some more on that module. Ma

Re: [hibernate-dev] exposing statistics easier (HHH-3593 solution)

2008-11-21 Thread Max Rydahl Andersen
John, follow Steve's lead and put it in hibernate-jmx module. These statistics have been hidden all too long for users of Hibernate IMO. This setting will make it available. IMO it is not a security issue since its not enabled by default and similar to users of AS can go enable jmx console witho

Re: [hibernate-dev] Constraint naming in HBM2DDL schema export

2008-10-31 Thread Max Rydahl Andersen
These should be on the existing NamingStrategy, not Dialect. They also needs to obey length limits on constraints - many dbs does not allow so long ones. It is not currently being implemented so feel free to contribute a patch (most likely for 3.4 since it will break/change API) /max H

Re: [hibernate-dev] Envers in Hibernate

2008-10-27 Thread Max Rydahl Andersen
, its @Id not @TrackIdentifierValue, etc). - Steve Ebersole Project Lead http://hibernate.org [EMAIL PROTECTED] Principal Software Engineer JBoss, a division of Red Hat http://jboss.com http://redhat.com [EMAIL PROTECTED] [EMAIL PROTECTED] On Mon, 2008-10-27 at 10:09 +0100, Max Rydahl Andersen

Re: [hibernate-dev] Envers in Hibernate

2008-10-27 Thread Max Rydahl Andersen
I like @TrackHistory /max @KeepHistory sounds well, it's straightforward to what it's going to do. I was thinking about @TrackChanges but you aren't really building "diff"s, so "history": @TrackHistory or @KeepHistory ? still including some flavour of the "version" should be better IMHO, a

Re: [hibernate-dev] Envers in Hibernate

2008-10-23 Thread Max Rydahl Andersen
I can see the confusion. Hibernate has a similar annotation for optimistic locking which nearly matches "Versioned" in Envers. Yes, @Version. But it's for a totally different thing. So far I only once I had a question on the forum if @Versioned and @Version are related in any way. Do you reall

Re: [hibernate-dev] Envers in Hibernate

2008-10-17 Thread Max Rydahl Andersen
I for one would like to have something like Envers for Hibernate ;) /max Hello, currently I'm a working for the jboss.org team, but as you maybe remember I also created the Envers project (http://www.jboss.org/ envers/). I would like to change my scope of work a bit and work "officialy" o

Re: [hibernate-dev] 3.3 and maven-eclipse-plugin

2008-08-19 Thread Max Rydahl Andersen
1) Are you using the *final* Ganymede ? the RC1 of Ganymede had a broken understanding of project names vs. directory names. 2) That m2eclipse actually resolves dependencies to project dependencies insteead of jar dependencies is a *Good thing* (e.g. change something in hibernate core and y

Re: [hibernate-dev] Hibernate 3.3.0.GA released

2008-08-18 Thread Max Rydahl Andersen
On Mon, 18 Aug 2008 12:36:23 +0200, Max Bowsher <[EMAIL PROTECTED]> wrote: Steve Ebersole wrote: http://in.relation.to/Bloggers/HibernateCore330GoesGA Very nice! Will new arrangements for syncing artifacts to Maven2 central now be going active, or it is still up to interested third parties t

Re: [hibernate-dev] New improvement: ResultSetTransformer to one big HashMap

2008-07-29 Thread Max Rydahl Andersen
s so I could submit this > one! > > Next I will work on a test case for HHH-2893 which will be a bit harder :) > > Cheers! > > 2008/6/10 Max Rydahl Andersen <[EMAIL PROTECTED]>: >>> Had a couple of patches sitting in Jira for many months - one since

Re: [hibernate-dev] Hudson for Annotations and Hibernate Search

2008-06-13 Thread Max Rydahl Andersen
> Thanks for that. I am having some problems though. > >> Open an issue in JBQA is probably the formal way. > How do I get Jira access to JBQA. I have a login to http://jira.jboss.com, > but when I log in I cannot see JBQA and if I just enter > http://jira.jboss.com/jira/browse/JBQA I get a permiss

Re: [hibernate-dev] Hudson for Annotations and Hibernate Search

2008-06-12 Thread Max Rydahl Andersen
On Thu, 12 Jun 2008 11:47:01 +0200, Hardy Ferentschik <[EMAIL PROTECTED]> wrote: > On Thu, 12 Jun 2008 10:47:32 +0200, Max Rydahl Andersen > <[EMAIL PROTECTED]> wrote: > >> We would need to ask jbossqa to set it up > And how would one get in touch with them? Open an

Re: [hibernate-dev] Hudson for Annotations and Hibernate Search

2008-06-12 Thread Max Rydahl Andersen
We would need to ask jbossqa to set it up and someone with VPN access would be able to do the final adjustments. -max > Hi there, > > I was thinking of setting up an integration build for Annotations and > maybe Hibernate Search. So my question really is - who is reposnsible? Can > I get access t

Re: [hibernate-dev] Fwd: Please review HHH-2893 and HHH-3059 - what's the wait?

2008-06-11 Thread Max Rydahl Andersen
>> > >> > http://opensource.atlassian.com/projects/hibernate/browse/HHH-2893 >> >> Primary reason: No test case. > > It's status is open, not 'Awaiting Testcase'... Done. >> > http://opensource.atlassian.com/projects/hibernate/browse/HHH-3059 >> >> Primary reason: Lost in the noise. > > There are

Re: [hibernate-dev] Fwd: Please review HHH-2893 and HHH-3059 - what's the wait?

2008-06-10 Thread Max Rydahl Andersen
> Had a couple of patches sitting in Jira for many months - one since > September 07'. Is there anything I can do to speed up the inclusion of > these patches? > > http://opensource.atlassian.com/projects/hibernate/browse/HHH-2893 Primary reason: No test case. > http://opensource.atlassian.com/pr

Re: [hibernate-dev] Problem setting the package name using Hibernate Tools.

2008-06-04 Thread Max Rydahl Andersen
use the forum where you posted this question twice already. Thanks, -max > Max, > > Thanks for your reply. Comments inline. > > > Secondly, even though I have defined the > >HibernateReverseEngineeringStrategy, why tools is generating pojos and > mapping > >files for all the tables in the db ?

Re: [hibernate-dev] Problem setting the package name using Hibernate Tools.

2008-06-02 Thread Max Rydahl Andersen
> in the code outputDir is > C:\Documents and > Settings\gowri\MyDocuments\NetBeansProjects\WebApplication57\src\java\Travel. > > But the generated pojo and mapping files don't contain package as Travel . Why should it set the package to travel based on a directory ? The reverse engineering stra

Re: [hibernate-dev] Re: Hibernate Search: approval for changes, "commit conventions"?

2008-05-29 Thread Max Rydahl Andersen
>> 3)//TODO set a serial number >> May I auto-generate a serialVersionUID for classes were missing, >> or do you have some special policy about them I should be aware of? > > I never understood that part of Java, you are free to go :) Please just remember that just because tools (like eclipse and

Re: [hibernate-dev] No successful builds since move to Maven

2008-05-16 Thread Max Rydahl Andersen
> I don't understand. Hibernate Search is still using Ant (with Ivy) for the > build. > If you just want to build Hibernate Search you don't even need maven. I > know there > is a POM in the top level directory, but this is not a working maven POM > as such. > The ant to maven mirgration is still a

Re: [hibernate-dev] No successful builds since move to Maven

2008-05-16 Thread Max Rydahl Andersen
>> >> I know you are all quite busy, I can help myself (slowly) but my main >> concern is to understand if these problems are >> A) known, due the fact nobody completed the migration to maven. >> B) You all tested only on IDEA >> C) my environment is completely broken > I only use IntelliJ, so this

Re: [hibernate-dev] No successful builds since move to Maven

2008-05-16 Thread Max Rydahl Andersen
> Also before 3.3.0CR1 I could link the projects together instead of making > jars, so it was easy to navigate the source to make experiments and could skip > all building activities until test phases. I could do this the last time too...but I wondered my self how these things gets done in the mav

Re: [hibernate-dev] Sync maven jboss repo with central repo?

2008-05-16 Thread Max Rydahl Andersen
That is IMO a maven bug... /max > Hi, > > > On Fri, 16 May 2008 15:25:25 +0200, Tomislav Stojcevich > <[EMAIL PROTECTED]> wrote: > >> Bad example since version is slightly different but shouldn't be(ga >> compared to GA) but still shows pom differences. >> http://repository.jboss.org/maven2/org/h

Re: [hibernate-dev] Sync maven jboss repo with central repo?

2008-05-16 Thread Max Rydahl Andersen
> Yes, I also forsee the pissing contest unfortunately. > > Part of the problem is that there are the same artifacts in both > repositories with differing poms. Which pom is correct? I vote for the pom maintained by the dev team behind the project - anything else is an approximiation. I'm not s

Re: [hibernate-dev] Sync maven jboss repo with central repo?

2008-05-14 Thread Max Rydahl Andersen
Just a comment: I never understood how a community global repository is considered more trustworthy than some other repository. Note that i'm not saying the jboss repo is more trustworthy. btw. the way to use multiple repositories is to setup a proxy maven repository that does the syncing for y

Re: [hibernate-dev] Invoking hbm2java without using Ant

2008-05-14 Thread Max Rydahl Andersen
That is what the exception says. /max > So is this what causing the java.lang.ExceptionInInitializerError while trying > to instantiate JDBCMetaDataConfiguration ? > > > --- Max Rydahl Andersen <[EMAIL PROTECTED]> wrote: > >> The exception says it all. You seem to

Re: [hibernate-dev] Invoking hbm2java without using Ant

2008-05-14 Thread Max Rydahl Andersen
.java:2010) > at java.awt.Window.dispatchEventImpl(Window.java:1791) > at java.awt.Component.dispatchEvent(Component.java:3819) > at java.awt.EventQueue.dispatchEvent(EventQueue.java:463) > at > org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:

Re: [hibernate-dev] Invoking hbm2java without using Ant

2008-05-14 Thread Max Rydahl Andersen
what is the stacktrace ? -max > Hi, > > Wondering if you can help me here. > > I have a hibernate.reveng.xml file which contains some tables. I want to > generate mappings and POJOs for those tables that are in the reveng.xml file > without using Ant. > > Here is how my code looks like: > > Strin

Re: [hibernate-dev] hibernate-documentation CI job

2008-04-30 Thread Max Rydahl Andersen
>> For the daily ones, i don't see a benefit to deploy them somewhere. >> For releases we will handle that. Will they be viewable via hudson ? -max >> Max, the eclipse documentation stuff we discussed is the only thing of >> which I can think which may potentially benefit from deploying these >>

Re: [hibernate-dev] hibernate-documentation CI job

2008-04-30 Thread Max Rydahl Andersen
On Wed, 30 Apr 2008 21:47:08 +0200, Steve Ebersole <[EMAIL PROTECTED]> wrote: > For the daily ones, i don't see a benefit to deploy them somewhere. > For releases we will handle that. > > Max, the eclipse documentation stuff we discussed is the only thing of > which I can think which may potential

Re: [hibernate-dev] hibernate-documentation CI job

2008-04-29 Thread Max Rydahl Andersen
link ? /max > Hallo, > > This mail is to announce the newly created hibernate-documentation job. > It is now setup to run daily. Let me know if you want artifacts deployed > on some repository as now it doesn't deploy anywhere. > > Thanks, > Aleksandar > _

Re: [hibernate-dev] Invoking hbm2java without using Ant

2008-04-22 Thread Max Rydahl Andersen
Look in the source code of the ant tasks or simply the unit tests that uses JDBCReader. -max > As part of the reverse engineering code generation functionality, I am trying > to find a solution on how to invoke hbm2java from a java class without using > ant. > > I read the documentation on Ant t

Re: [hibernate-dev] Acceptance Of Documentation Patches

2008-04-20 Thread Max Rydahl Andersen
> However, this leads to my question: if I do the work (and its of > acceptable quality), and submit it in the JIRA as a patch, will it be > accepted? yes, that is what jira is for ,) /max ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org htt

Re: [hibernate-dev] Using a checksum for version properties

2008-04-14 Thread Max Rydahl Andersen
Look at optimistic-lock in the docs. /max > Hi, > > We have some database tables that we can't add version columns to so I > would like to instead create a version number by using checksums on > the rows. > > I'm thinking specifically of Oracle here but I assume other platforms > may have equival

Re: [hibernate-dev] 2nd-level cache suggestions

2008-04-01 Thread Max Rydahl Andersen
> I propose the following solutions: > > 1. I think it's possible to add a manual collection cache entry update > in the postAction() callback. And it'll probably work. How would you ensure that the cache is consistent ? "extra lazy collections" is kinda opposite to what "cached collections" is

Re: [hibernate-dev] Hibernate EntityManager and Annotations bug fix release

2008-03-17 Thread Max Rydahl Andersen
> As far as the jboss repository is concerned... > It contains numerous artifacts with the same ids as things in central - > I *hope* these are just duplicates, not subtley different variations. It > also in a number of cases contains the same artifact under multiple > different group/artifactIds.

Re: [hibernate-dev] invalid URL referenced by Hibernate Tools Eclipse update site

2008-03-17 Thread Max Rydahl Andersen
yes, they rearranged the update site. I'll go beat up the responsible guys at eclipsecon. So in short: We are working on it ;) /max > Hello list, > > Looks like something has changed on release.mozilla.org, possibly in the > last few hours. > > Using Eclipse Europa (on Mac OS X 10.4) the Hiber

Re: [hibernate-dev] Re: SVN Tag for 3.2.0.GA? (hibernate-tools)

2008-03-04 Thread Max Rydahl Andersen
hmmmI need to follow up on that. There should be one but I can't find it either. I'll be back... /max > This was for hibernate-tools. > > On Feb 19, 2008 10:07 AM, Tomislav Stojcevich <[EMAIL PROTECTED]> wrote: >> Was a tag created for this release? The closest I can find is CR1, I >> nee

Re: [hibernate-dev] annotation for adding column comments for hbm2doc - done!!

2008-01-30 Thread Max Rydahl Andersen
please submit these as patches against hibernate annotations and hibernate tools project in jira. -max > Hi all, > > Today I made the relevant code changes in AnnotationBinder.java, > EJB3Column.java and table.ftl. Its worked like dream.Just I couldn't believe > myself. > > Please take diff fro

Re: [hibernate-dev] annotation for adding column comments for hbm2doc

2008-01-27 Thread Max Rydahl Andersen
Take a look at how HbmBinder setups comments for column (by calling comment.setComment()) and then implement the same for AnnotationBinder. Look how org.hibernate.annotations.Table is implemented and do a similar mechanism for org.hibernate.annotations.Column. this last part is just my suggest

Re: [hibernate-dev] question

2007-12-28 Thread Max Rydahl Andersen
ask in forum. -max > > > Hello to all, > I am practicing with Hibernate and I have a problem with the management of > the caching. Excuse my ignorance. > The simple program that I have developed in order to try the caching's > functionality gives me > an output that I can't understand. The prob

Re: [hibernate-dev] Hibernate Statistics

2007-12-19 Thread Max Rydahl Andersen
Feel free michael, jira is very open for patches ;) /max > Hi, > I realized that the Hibernate Statistics lack a few things in my opinion. > > There are for example: > a) There is a bug in QueryStatisticsImpl that prevents the minTime from > being computed properly (HHH-2948) > > b) Critera Queri

Re: [hibernate-dev] Using hibernate with UDFs

2007-12-19 Thread Max Rydahl Andersen
The fun part with hibernate will be the parameters to the UDFs. They will >> need to be session specific. My initial though was to add some mechanism to >> allow properties to be assigned to the session, IE: >> >> session.setProperty("user_id", "1"

Re: [hibernate-dev] Using hibernate with UDFs

2007-12-18 Thread Max Rydahl Andersen
s.jboss.org/mailman/listinfo/hibernate-dev -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss a division of Red Hat [EMAIL PROTECTED] ___ hibernate-dev mailing list hibernate-dev@li

Re: [hibernate-dev] JPA's allocationSize & SequenceHiLoGenerator

2007-11-23 Thread Max Rydahl Andersen
t hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss a division of Red Hat [EMAIL PROTECTED] ___ hibernate-dev mailing

Re: [hibernate-dev] ResultCheckStyle.PARAM does not work with PostgreSQL

2007-11-21 Thread Max Rydahl Andersen
Value() Please, could someone review the fix and apply the patch? Could you also back port the fix? Thank you. Regards Julius Stroffek -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss a division of Red Hat [

Re: [hibernate-dev] hibernate-extras

2007-11-13 Thread Max Rydahl Andersen
adata 2) Since the dialects might not get the connection or the user does not have proper rights to inspect the metadata they should have sensible defaults anyway - or even be able to get the base information like major/minor version from other settings etc. -- -- Max Rydahl Andersen c

Re: [hibernate-dev] HSEARCH-114

2007-10-25 Thread Max Rydahl Andersen
John Griffin wrote: For the ResultTransformer, do you just want the user to pass a class as the sole argument to indicate what they want as a result? Ex. setResultTransformer(Class clazz) where clazz is Map.class or Object.class This was what I wanted in the beginning when I updated the re

Re: [hibernate-dev] Conversion of XML-based mappings to Annotation-based

2007-09-27 Thread Max Rydahl Andersen
http://tools.hibernate.org /max Greetings! I'm wondering if there are any hbm-to-annotation applications out there? I'm sitting with a large portion of hbm-files for an old project and would like to have the mappings moved to use annotations on the pojos. Does that exist? Best regards /Vi

Re: [hibernate-dev] Hudson build co mpleted: hibernate-3.2 » mysql50,linux # 18

2007-09-12 Thread Max Rydahl Andersen
10+ messages on the same day about hudson builds feels like overkill /max See http://hudson.qa.jboss.com/hudson/job/hibernate-3.2/./TEST_DATABASE=mysql50,label=linux/18/changes ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https:

Re: [hibernate-dev] Multiple-object batched inserts

2007-08-22 Thread Max Rydahl Andersen
http://opensource.atlassian.com/projects/hibernate/browse/HHH-1 /max I thought his question was a little too technical for the general list, so I thought I¹d ask it here. Is there a technical reason why Hibernate does not or cannot support the batching of multiple (different) object insertion

Re: [hibernate-dev] Eclipse Persistence Services Project

2007-08-20 Thread Max Rydahl Andersen
Yes, old news announced during EclipseCon in March. /max http://www.eclipse.org/proposals/eclipselink "Oracle offers its Oracle TopLink code base and tests for consideration by the project as an initial starting point." Anyone already read this? -- http://plentz.org/ "Provide options, don'

Re: [hibernate-dev] ANN Validator HEM:no more cyclic deps

2007-08-15 Thread Max Rydahl Andersen
a louv' it! ;) /max On Aug 11, 2007, at 04:46, Max Rydahl Andersen wrote: Excellentand even more important; evil cyclic dependencies are...well...evil! ;) So the unit tests runs against a bundled hibernate.jar now or ? /max I managed to remove the pseudo cyclic dependencies (due

Re: [hibernate-dev] ANN Validator HEM:no more cyclic deps

2007-08-11 Thread Max Rydahl Andersen
Excellentand even more important; evil cyclic dependencies are...well...evil! ;) So the unit tests runs against a bundled hibernate.jar now or ? /max I managed to remove the pseudo cyclic dependencies (due to unit tests), so the projects development should run fine even on eclipse now.

Re: [hibernate-dev] Register Out Parameters in a Stored Procedure

2007-06-26 Thread Max Rydahl Andersen
yes, so use that perfect standard compliant API. Hibernate's support for stored procedures does not cover out parameters. /max Hi Hibernate devs .. I need to execute a stored procedure in DB2 ... The problem is that i don´t know how to register an out parameter to the stored procedure. With

Re: [hibernate-dev] Maven is not foobar, just fybar

2007-06-13 Thread Max Rydahl Andersen
With respect to eclipse and maven then the maven guys are just "great" since mvn eclipse:eclipse and the m2 eclipse plugin of course decides to do things differently - basically making them incompatible. http://jira.codehaus.org/browse/MECLIPSE-78 Unfortunately the eclipse plugin does not seem

Re: [hibernate-dev] Maven is not foobar, just fybar

2007-06-13 Thread Max Rydahl Andersen
I fail to see how a plugin can fix this since the etc directory is still *outside* what eclipse can reach since it is not inside any project in eclipse. But I'll take a look, but until now I have not had any need for using a plugin. /max Steve Ebersole wrote: Max Rydahl Andersen

Re: [hibernate-dev] Maven is not foobar, just fybar

2007-06-13 Thread Max Rydahl Andersen
can fix this since the etc directory is still *outside* what eclipse can reach since it is not inside any project in eclipse. But I'll take a look, but until now I have not had any need for using a plugin. /max Steve Ebersole wrote: Max Rydahl Andersen wrote: Hi Chris and Steve, I t

Re: [hibernate-dev] Maven is not foobar, just fybar

2007-06-13 Thread Max Rydahl Andersen
I took a look at hibernate3 head today because Chris was claiming mvn eclipse:eclipse were broken. The short answer to that is that yes - maybe, it actually works (except for some "funny" things) I've updated http://hibernate.org/422.html to describe the few things I had to do to get maven

[hibernate-dev] Maven is not foobar, just fybar

2007-06-13 Thread Max Rydahl Andersen
the tutorial included in eclipse -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss a division of Red Hat [EMAIL PROTECTED] ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https

Re: [hibernate-dev] docbook + maven

2007-06-04 Thread Max Rydahl Andersen
though certainly that is welcome). More I just need people's thoughts on the various approaches, especially those using or familiar with DocBook. Thanks, Steve ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org

Re: [hibernate-dev] hibernate-hsqldb-testsuite build.51 Build Successful

2007-06-04 Thread Max Rydahl Andersen
On Mon, 04 Jun 2007 10:30:32 +0200, Aleksandar Kostadinov <[EMAIL PROTECTED]> wrote: Max Rydahl Andersen wrote, On 06/04/2007 10:03 AM (EEST): Any chance we could start only getting build successful messages after something have been fixed ?! You mean on hibernate-dev@lists.jboss.

Re: [hibernate-dev] hibernate-hsqldb-testsuite build.51 Build Successful

2007-06-04 Thread Max Rydahl Andersen
t build: (first 50 of 0) -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss a division of Red Hat [EMAIL PROTECTED] ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mai

<    1   2   3   >