[Hibernate] Fwd: [hibernate-commits] Hibernate SVN: r10885 - branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence

2006-11-30 Thread Max Rydahl Andersen
olumn(); } ___ hibernate-commits mailing list [EMAIL PROTECTED] https://lists.jboss.org/mailman/listinfo/hibernate-commits -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss a division of Re

Re: [Hibernate] hibernate performace improvements and dynamic mappings generation using heuristics

2006-10-29 Thread Max Rydahl Andersen
ns. > > appreciate you guys feedback/comments on this > > thanks > mahen > > > On 10/19/06, Max Rydahl Andersen <[EMAIL PROTECTED]> wrote: >> >> Hi Mahen, >> >> some have previously talked about utilizing the statistics and aop to >> figure >

Re: [Hibernate] hibernate performace improvements and dynamic mappings generation using heuristics

2006-10-19 Thread Max Rydahl Andersen
gt; pattern of the data,, in other words dynamically deciding on the mapping > based on what queries are used more frquently in a system,, > > would appreciate some feedback from you all > > Thanks > Mahen

[Hibernate] Fwd: [hibernate-commits] Hibernate SVN: r10319 - branches/Branch_3_2/Hibernate3/src/org/hibernate/mapping

2006-08-23 Thread Max Rydahl Andersen
abstract public int getOptimisticLockMode(); ___ hibernate-commits mailing list [EMAIL PROTECTED] https://lists.jboss.org/mailman/listinfo/hibernate-commits -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http

Re: [Hibernate] Issue with ManyToMany relationship

2006-08-18 Thread Max Rydahl Andersen
void removeFromEvent(Event event) { > this.getEvents().remove(event); > event.getParticipants().remove(this); > } > } > > > - > U

Re: [Hibernate] Maintaining object uniqueness across remote sessions (was: remoting hibernate)

2006-08-07 Thread Max Rydahl Andersen
d regards > Adrian Moos > > PS: This software was developed for ELCA's application framework EL4J, > which is released under the GPL, so you're welcome to use it. -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate

[Hibernate] nightly builds

2006-08-04 Thread Max Rydahl Andersen
as to be done (in case of the db actually not supporting the constructs being tested) -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] -

Re: [Hibernate] dynamic update property is not working.

2006-08-03 Thread Max Rydahl Andersen
dynamic-insert="true" > dynamic-update="true" > table="HIBERNATE_TEST"> > > > > > > > > &g

Re: [Hibernate] useless parameter in SecondPass interface

2006-08-02 Thread Max Rydahl Andersen
ok for me to fix the code in the metadata package too or does it need to stay compatible to the old version ? /max > I don't use them. Will I ever need to integrate them? > core CR3 is incompatible with annotations CR1 already so I guess you can > do the change. > >

Re: [Hibernate] useless parameter in SecondPass interface

2006-08-02 Thread Max Rydahl Andersen
is incompatible with annotations CR1 already so I guess you can > do the change. Ok - i'll remove it. /max > Max Rydahl Andersen wrote: >> Hi Emmanuel/Steve, >> >> The fix I just did for >> http://opensource.atlassian.com/projects/hibernate/browse/HHH-

Re: [Hibernate] instrument tasks

2006-08-02 Thread Max Rydahl Andersen
use the "tool" provided tasks. Another context for this alignment/move is the talks we have had about allowing customization of schemaexport/update ...that would also be relevant to ensure it fits into this scheme. -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate

[Hibernate] useless parameter in SecondPass interface

2006-08-02 Thread Max Rydahl Andersen
then annotations breaks. Should we just let it stick around or remove it ? -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] - Take Surveys. Earn

Re: [Hibernate] Primary key names and storage meta-attributes

2006-07-28 Thread Max Rydahl Andersen
d earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > ___ > hibernate-devel mailing list > hibernate-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/hibernate-devel --

Re: [Hibernate] Roadmap - components

2006-07-25 Thread Max Rydahl Andersen
here would be splitting types (and their interface >>>>> appropriately) to define "static" Types and "scoped" Types... >>>>> 2) Modify the Type interface to accept either a session or a > session >>>>>

Re: [Hibernate] jdk 1.5 code in h3 tests

2006-07-25 Thread Max Rydahl Andersen
On Tue, 25 Jul 2006 15:44:28 +0200, Emmanuel Bernard <[EMAIL PROTECTED]> wrote: > Ah my bad, I had a split of personality when I committed it. I'll move > it today on Annotations. Thanks - what is your other persona's name and email address ? /max > > Max Ryd

[Hibernate] jdk 1.5 code in h3 tests

2006-07-24 Thread Max Rydahl Andersen
Hi guys, subject is breaking the nightly builds and other stuff ;) The test is relevant but can't be there as it is now. Any suggestions ? Move it to the metadata test suite maybe? -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org

Re: [Hibernate] extends Configuration Tricks

2006-07-24 Thread Max Rydahl Andersen
Emmanuel) > > Overrides setCollectionCacheConcurrencyStrategy(String collectionRole, > String concurrencyStrategy, String region) > To have its own cache info > > + Emmanuel have multiple custom secondpass subclasses > > /max > > > > > > > > > -

[Hibernate] extends Configuration Tricks

2006-07-24 Thread Max Rydahl Andersen
egion) To have its own cache info + Emmanuel have multiple custom secondpass subclasses /max -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --

Re: [Hibernate] Roadmap - components

2006-07-24 Thread Max Rydahl Andersen
e the >>>> 'hibernate.bytecode.provider' and >>>> 'hibernate.bytecode.use_reflection_optimizer'. Down the road, it >> also >>>> allows us to implement discrimination-based inheritance for >>> components. >>>> >>>>

Re: [Hibernate] logging AbstractSaveEventListener#performSave

2006-07-21 Thread Max Rydahl Andersen
return performSaveOrReplicate( > entity, > key, > persister, > useIdentityColumn, > anything, > source, >

Re: [Hibernate] remoting hibernate

2006-07-19 Thread Max Rydahl Andersen
anagement or > state copying [1] code from hibernate? > > In case you are curious, my draft code for the manual solution is > attached. > > <> > <> > > What do you think? > > Regards > Adrian Moos > > [1] that is: to copy all state f

Re: [Hibernate] Roadmap

2006-07-17 Thread Max Rydahl Andersen
gt;> >> >> > -------- > - >> Using Tomcat but need to do more? Need to support web services, > security? >> Get stuff done quickly with pre-integrated technology to make your job > >> easier

Re: [Hibernate] Roadmap - components

2006-07-17 Thread Max Rydahl Andersen
ode.use_reflection_optimizer'. Down the road, it > also >>> allows us to implement discrimination-based inheritance for >> components. >>> >>> >>> >> > -------- >> -

Re: [Hibernate] Roadmap - components

2006-07-17 Thread Max Rydahl Andersen
--- > - >> Using Tomcat but need to do more? Need to support web services, > security? >> Get stuff done quickly with pre-integrated technology to make your job > >> easier >> Download IBM WebSphere Application Server v.1.0.1 based on Apache >>

Re: [Hibernate] Roadmap - components

2006-07-17 Thread Max Rydahl Andersen
/sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > ___ > hibernate-devel mailing list > hibernate-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto

Re: [Hibernate] Roadmap

2006-07-17 Thread Max Rydahl Andersen
sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > ___ > hibernate-devel mailing list > hibernate-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.r

Re: [Hibernate] hibernate lazy load

2006-07-17 Thread Max Rydahl Andersen
se > the > HibermnateDaoSupport closes the hibernate session... > > I have tried with the join keyword in gthe query without success. > > Any idea?? > > thx -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PR

Re: [Hibernate] Hibernate Lucene integration

2006-07-17 Thread Max Rydahl Andersen
query, tooling impls etc) >> >> > Batch changes: to do that I need to be able to keep a session related >> > queue of all insert/update changes. I can't in the current design >> > because SessionImpl does not have such concept and because the >> >

Re: [Hibernate] Unexpected token: GENERATED in statement

2006-07-17 Thread Max Rydahl Andersen
. > Could anyone please point me the problem. > Regards, > Subhra > > > - > Do you Yahoo!? > Everyone is raving about the all-new Yahoo! Mail Beta. -- -- Max Rydahl Andersen callto://max.

Re: [Hibernate] Forum

2006-07-16 Thread Max Rydahl Andersen
p://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > ___ > hibernate-devel mailing list > hibernate-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.

Re: [Hibernate] Hibernate Lucene integration

2006-07-14 Thread Max Rydahl Andersen
? > Clustered Directory: think about that. A JDBC Directory might not be the > perfect solution actually. Doesn't Lucene or some sister project provide clustering for Lucene yet ? > implements additional strategies to load object on query.list() what is this one ? -- -- Max Rydahl

Re: [Hibernate] eclipse chokes on current annotations code

2006-07-12 Thread Max Rydahl Andersen
Original Message----- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] On >> Behalf Of Max Rydahl Andersen >> Sent: Wednesday, July 12, 2006 3:57 AM >> To: Hibernate development >> Subject: [Hibernate] eclipse chokes on current annotations code >> >

[Hibernate] eclipse chokes on current annotations code

2006-07-12 Thread Max Rydahl Andersen
javac works fine, but eclipse chokes on casting Properties to Map I've bugged eclipse about it to see what they provide as explanation. https://bugs.eclipse.org/bugs/show_bug.cgi?id=150362 -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED]

Re: [Hibernate] native id generation in DerbyDialect

2006-07-12 Thread Max Rydahl Andersen
pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______ > hibern

Re: [Hibernate] Hibernate 3.2.0.cr3 released

2006-07-07 Thread Max Rydahl Andersen
el@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] Using Tomcat but need to do more? Need to support web services, security?

Re: [Hibernate] type safe criteria queries

2006-07-06 Thread Max Rydahl Andersen
It may contain confidential or privileged information or both. > > No confidentiality or privilege is waived or lost by any mis > transmission. > > If you receive this correspondence in error please delete it from your > system immediately and notify the sender. > > You mus

[Hibernate] Hibernate Tools 3.2.0.beta6 is out

2006-07-06 Thread Max Rydahl Andersen
http://forum.hibernate.org/viewtopic.php?p=2313044#2313044 http://blog.hibernate.org/cgi-bin/blosxom.cgi/2006/07/06#hibernatetoolsbeta6released -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] Using Tomcat

Re: [Hibernate] Keep information on a per Sf basis or perEntityPersister basis

2006-07-02 Thread Max Rydahl Andersen
> Yes I could add some lucene specific metadata and let the SF constructor > eat this information I meant just get it from the metaattributes from the Configuration ? Then no specific addon module info creeps into the core. /max > > Max Rydahl Andersen wrote: >> >> O

Re: [Hibernate] Keep information on a per Sf basis or per EntityPersister basis

2006-07-02 Thread Max Rydahl Andersen
> An event has access to the configuration at initialization time and this > happens just before the SessionFactory creation. so today it could just take info from that and tie it into something "lucene-integration" specific, correct ? /max > Max Rydahl Andersen wrote:

Re: [Hibernate] Keep information on a per Sf basis or per EntityPersister basis

2006-07-02 Thread Max Rydahl Andersen
cause it could always be read/accessed through the Configuration model. /max > > Max Rydahl Andersen wrote: >> >> On Sat, 01 Jul 2006 20:02:46 +0200, Emmanuel Bernard >> <[EMAIL PROTECTED]> wrote: >> >> > For the Lucene integration I need to keep tr

Re: [Hibernate] Keep information on a per Sf basis or per EntityPersister basis

2006-07-02 Thread Max Rydahl Andersen
rnate event) needs it. >> This is actually very close to the notion of cache which is part of the >> core. >> >> Max Rydahl Andersen wrote: >> > >> > On Sat, 01 Jul 2006 20:02:46 +0200, Emmanuel Bernard >> > <[EMAIL PROTECTED]> wrote: >>

Re: [Hibernate] Keep information on a per Sf basis or per EntityPersister basis

2006-07-01 Thread Max Rydahl Andersen
uot; model because the core persistence engine does not need them. AFAIK it still does not need them, so why not build some external "data repository" or simply keep the Configuration (maybe a serialized clone) around for these special cases ? -- -- Max Rydahl Andersen callto

Re: [Hibernate] New error on Annotation query

2006-06-21 Thread Max Rydahl Andersen
"firstn") >> }), >> columns = [EMAIL PROTECTED](name = "surface"), >> @ColumnResult(name = "volume")}) >> >> >> >> ___ >> hibernate-devel maili

Re: [Hibernate] New error on Annotation query

2006-06-21 Thread Max Rydahl Andersen
mn = >> "length"), >> @FieldResult(name = "captain.firstname", column = >> "firstn") >> }), >> columns = [EMAIL PROTECTED](name = "surface"), >> @ColumnResult(name = "volume")}) >> >> >> >

Re: [Hibernate] org.hibernate.sql.GeneralTest missing class

2006-06-21 Thread Max Rydahl Andersen
.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] All the advantages of Linux Managed Hosting--Without the Cost and Risk!

Re: [Hibernate] New error on Annotation query

2006-06-20 Thread Max Rydahl Andersen
"lastn"), > @FieldResult(name = "dimensions.length", column = > "length"), > @FieldResult(name = "captain.firstname", column = > "firstn") > }), > columns = [EMAIL PROTE

Re: [Hibernate] Hbm2Java and custom-type problem in Hibernate-3/Hib-tools:3.1.0.beta4

2006-06-20 Thread Max Rydahl Andersen
________ > hibernate-devel mailing list > hibernate-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED

Re: [Hibernate] questions regarding development setup

2006-06-11 Thread Max Rydahl Andersen
On Sun, 11 Jun 2006 18:34:36 +0200, Erik Bertelsen <[EMAIL PROTECTED]> wrote: > 2006/6/11, Max Rydahl Andersen <[EMAIL PROTECTED]>: >> >> >> >> as i mentioned at the bug we could actually implement this by doing a >> custom impl of HibernateTestCase.

Re: [Hibernate] questions regarding development setup

2006-06-11 Thread Max Rydahl Andersen
10:21 AM >> > To: Scott M Stark; Szczepan Faber >> > Cc: hibernate-devel@lists.sourceforge.net >> > Subject: RE: [Hibernate] questions regarding development setup >> > >> > >> > Yes, but no such thing exist AFAIK. That is why we introduced &g

Re: [Hibernate] questions regarding development setup

2006-06-10 Thread Max Rydahl Andersen
at is even worse to maintain. Again, as Scott so correctly pointed out; it is a limitation of the unittest framework we are trying to cope with. /max > Thanks, > Szczepan Faber > > On 6/9/06, Max Rydahl Andersen <[EMAIL PROTECTED]> wrote: >> >> >> >

Re: [Hibernate] questions regarding development setup

2006-06-09 Thread Max Rydahl Andersen
e know some part has a bug/issue ? how is that for credibility ? /max > Thanks, > Szczepan > > > On 6/9/06, Max Rydahl Andersen <[EMAIL PROTECTED]> wrote: >> >> >> > b) But what's the reason of making surprising test subpackage (I've >>

Re: [Hibernate] Query failing

2006-06-09 Thread Max Rydahl Andersen
te.ejb.test.item and not just item. > > /max > >> Max Rydahl Andersen wrote: >>> >>> > No, this is a pure Hibernate EntityManager test, it has nothing to do >>> > with app servers. >>> >>> ah - i didn't see that getConstantValue th

Re: [Hibernate] Query failing

2006-06-09 Thread Max Rydahl Andersen
t.item and not just item. /max > Max Rydahl Andersen wrote: >> >> > No, this is a pure Hibernate EntityManager test, it has nothing to do >> > with app servers. >> >> ah - i didn't see that getConstantValue thingy. >> that error is because of terr

Re: [Hibernate] Query failing

2006-06-09 Thread Max Rydahl Andersen
alue thingy. > that error is because of terrible windows that forces the classloaders > to have case ignored for lookups ;) > > /max > >> Max Rydahl Andersen wrote: >>> >>> I have seen similar NoClassDef when dealing with classloaders in >>> eclipse.

Re: [Hibernate] Query failing

2006-06-09 Thread Max Rydahl Andersen
> No, this is a pure Hibernate EntityManager test, it has nothing to do > with app servers. ah - i didn't see that getConstantValue thingy. that error is because of terrible windows that forces the classloaders to have case ignored for lookups ;) /max > Max Rydahl Andersen wrote

Re: [Hibernate] Query failing

2006-06-09 Thread Max Rydahl Andersen
stractEntityManagerImpl.createQuery(AbstractEntityManagerImpl.java:79) > at > org.hibernate.ejb.test.QueryTest.testEscapeCharacter(QueryTest.java:133)| > > Note that if I change the alias, it works. > Query q = em.createQuery( "select i f

Re: [Hibernate] questions regarding development setup

2006-06-09 Thread Max Rydahl Andersen
rent setup then lets talk ;) /max > > Thanks, > Szczepan > > > On 6/8/06, Max Rydahl Andersen <[EMAIL PROTECTED]> wrote: >> >> > 1. Why there are about 10 failing test after getting project from svn? >> >> a) if the method ends in "FailureEx

Re: [Hibernate] questions regarding development setup

2006-06-08 Thread Max Rydahl Andersen
based tests which does not fit 100% into the implmentation "layout". -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] ___ hibernate-devel mailing list

Re: [Hibernate] New built-in type

2006-06-08 Thread Max Rydahl Andersen
th nulls in it ? But I think it at least should be challenged. -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] ___ hibernate-devel mailing list hibernate-devel@list

Re: [Hibernate] Plan for a full text search facility built on top ofHibernate Lucene annotations

2006-06-01 Thread Max Rydahl Andersen
; focussed on full text search (also like Compass's one : >> >> http://www.opensymphony.com/compass/versions/0.9.1/html/core-workingwithobjects.html#Searching >> ) but that would make sure the objects retrieved from the Lucene >> index behave as if they we

Re: [Hibernate] CacheProviders

2006-06-01 Thread Max Rydahl Andersen
t; > Another nice benefit of this would be to allow "mixed providers". Like > imagine a clustered data cache along with a local query cache. +1. What about "mixed providers" in general ? e.g. being able to use EhCache for some entities and JBossCache for other

Re: [Hibernate] Plan for a full text search facility built on top of Hibernate Lucene annotations

2006-06-01 Thread Max Rydahl Andersen
transparent > way for the user. > As I said, in a first implementation, we can always "fetch eager" from > Hibernate, but some provision should be made to avoid loading from the > database when it's not necessary. > If you use mostly the full text search to displa

Re: [Hibernate] Plan for a full text search facility built on top of Hibernate Lucene annotations

2006-06-01 Thread Max Rydahl Andersen
ase) > This looks to me like a new Criterion implementation, the rest is > regular Criteria API. But it needs an alternative rendering + loader. Hence my ref to exposing CustomQuery. -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org

Re: [Hibernate] Plan for a full text search facility built on top of Hibernate Lucene annotations

2006-06-01 Thread Max Rydahl Andersen
gt; http://www.opensymphony.com/compass/versions/0.9.1/html/core-settings.html#config-converter >- Build a Full Text query facility similar to Hql / Criteria, > but focussed on full text search (also like Compass's one : > > http://www.opensymphony.com/c

[Hibernate] remove behavior

2006-05-29 Thread Max Rydahl Andersen
is needed) -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. T

Re: [Hibernate] Fetch profiles

2006-05-28 Thread Max Rydahl Andersen
and if that is what it takes, then let that be it ;) /max Exactly. -Original Message- From: Max Andersen And I guess you really want it disjunct from the mapping and not "just" where the assocation is already defined ? -- -- Max Rydahl Andersen callto://max.rydah

Re: [Hibernate] Fetch profiles

2006-05-28 Thread Max Rydahl Andersen
The could also be a good place to make some other things settable, eg, TX isolation mode, flushmode, TX timeout, etc. WDYT? Is it a nice construct? +1 (times all the other times I voted for it ;) -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibern

Re: [Hibernate] FlushMode.NEVER to MANUAL

2006-05-27 Thread Max Rydahl Andersen
. Click to learn more http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642 ___ hibernate-devel mailing list hibernate-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- M

Re: [Hibernate] Issue with pluggable functions

2006-05-10 Thread Max Rydahl Andersen
leases out. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Max Rydahl Andersen Sent: Wednesday, May 10, 2006 9:57 AM To: Emmanuel Bernard; [EMAIL PROTECTED]; hibernate-devel@lists.sourceforge.net Subject: Re: [Hibernate] Issue with pluggable functions On W

Re: [Hibernate] Issue with pluggable functions

2006-05-10 Thread Max Rydahl Andersen
have ;) /max -Original Message- From: Max Rydahl Andersen <[EMAIL PROTECTED]> To: Emmanuel Bernard <[EMAIL PROTECTED]>; Hibernate development Sent: Wed May 10 09:24:46 2006 Subject: Re: [Hibernate] Issue with pluggable functions ...so I apparently did not have the latest-latest

Re: [Hibernate] Issue with pluggable functions

2006-05-10 Thread Max Rydahl Andersen
Hibernate Annotations 3.2.0.CR1 -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- Using Tomcat but need to do more? Need to support web services, security

Re: [Hibernate] Issue with pluggable functions

2006-05-10 Thread Max Rydahl Andersen
ut why are you using that from annotations ? In any case, did you not need to rebuild annotations to remove the cglib dependency ? -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PRO

Re: [Hibernate] serialized/deserialized criteria and query cache issue

2006-05-05 Thread Max Rydahl Andersen
ld be great, though, I know that such interface changes are bad. For now, I'll add this to the ResultTransformer javadoc. Hopefully the users read them. Thanks for your assistance! Ciao, Mario -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernat

Re: [Hibernate] serialized/deserialized criteria and query cache issue

2006-05-05 Thread Max Rydahl Andersen
On Fri, 05 May 2006 12:26:27 +0200, Mario Ivankovits <[EMAIL PROTECTED]> wrote: Max Rydahl Andersen schrieb: could probably just be solved with a proper equals/hashcode impl Yes, I also thought about it, but also thought you'll consider this as a hack ;-) But with the "subc

Re: [Hibernate] serialized/deserialized criteria and query cache issue

2006-05-05 Thread Max Rydahl Andersen
stinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- Using Tomcat but need to do more? Need to support web services, security? Get stuff

[Hibernate] hibernate tools 3.1 beta5 is out

2006-04-24 Thread Max Rydahl Andersen
http://forum.hibernate.org/viewtopic.php?p=2302253#2302253 -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- Using Tomcat but need to do more? Need to

Re: [Hibernate] Problem adding a new Dialect

2006-04-24 Thread Max Rydahl Andersen
ould easily done because i was trying for days now for myself with no success! Any help would be appreciated! Thanks in advance! Regards, Markus -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.o

[Hibernate] bringing ejb3 annotations generation up to spec...

2006-04-20 Thread Max Rydahl Andersen
Hi, Anyone with a free hand (and knowledge) who would like to bring the ejb3 generation up to spec in the tools ? -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED

Re: [Hibernate] left outer join

2006-04-18 Thread Max Rydahl Andersen
___ hibernate-devel mailing list hibernate-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org

Re: [Hibernate] hibernate , cglib 2.2.(2) , asm 2.x

2006-04-18 Thread Max Rydahl Andersen
te-annotations 3.1beta8 org.hibernate hibernate 3.1.2 java version "1.5.0_06" thanks, valerio On 4/18/06, Max Rydahl Andersen <[EMAIL PROTECTED]> wrote: 1) I don't it will work because of api changes, but feel free to try/submit patches 2)

Re: [Hibernate] hibernate , cglib 2.2.(2) , asm 2.x

2006-04-18 Thread Max Rydahl Andersen
s a lot, Valerio Schiavoni -- http://valerioschiavoni.blogspot.com http://jroller.com/page/vschiavoni -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- This SF.Net email is sponsored

Re: [Hibernate] stored procedure

2006-04-17 Thread Max Rydahl Andersen
f forward 4 help. Thank u, Parimala -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- This SF.Net email is sponsored by xPML, a groundbreaking s

Re: [Hibernate] hibernate-mysql-testsuite Build Completed With Testsuite Errors

2006-04-14 Thread Max Rydahl Andersen
Expected org.hibernate.test.hql.HQLTest testDuplicateExplicitJoinFailureExpected org.hibernate.test.hql.HQLTest testCollectionFetchVsLoad org.hibernate.test.stats.StatsTest Modifications since last build: (first 50 of 0) -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECT

Re: [Hibernate] Status TimesTen

2006-04-12 Thread Max Rydahl Andersen
720&dat=121642 ___ hibernate-devel mailing list hibernate-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss In

Re: [Hibernate] natural-id bugs in 3.1.2 w/ patches

2006-04-06 Thread Max Rydahl Andersen
l.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 ___ hibernate-devel mailing list hibernate-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen

[Hibernate] Fwd: [Hibernate-commits] Hibernate Code SVN: r9731 - in trunk/HibernateExt/metadata/src: java/org/hibernate/cfg java/org/hibernate/lucene java/org/hibernate/validator test/org/hibernate/t

2006-04-04 Thread Max Rydahl Andersen
ing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/hibernate-commits -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- This SF.Net email is spo

Re: [Hibernate] ejb3configuration support in ant tools

2006-03-29 Thread Max Rydahl Andersen
e raised in the User Forum with an excellent description given: http://forum.hibernate.org/viewtopic.php?t=957348 Ciao, Jonathan O'Connor XCOM Dublin "Max Rydahl Andersen" <[EMAIL PROTECTED] To

[Hibernate] ejb3configuration support in ant tools

2006-03-29 Thread Max Rydahl Andersen
) -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications

[Hibernate] Fwd: Re: error at hibernate jira installation

2006-03-29 Thread Max Rydahl Andersen
FYI if you see weird "connection is closed" messages while working with jira. /max --- Forwarded message --- From: "Craig McElroy" <[EMAIL PROTECTED]> To: "Max Rydahl Andersen" <[EMAIL PROTECTED]> Cc: Subject: Re: error at hibernate jira in

Re: [Hibernate] bytecode libraries

2006-03-23 Thread Max Rydahl Andersen
vel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- This SF.

Re: [Hibernate] bytecode libraries

2006-03-23 Thread Max Rydahl Andersen
s-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 ___ hibernate-devel mailing list hibernate-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.ande

Re: [Hibernate] branchng/tagging subversion repo

2006-03-22 Thread Max Rydahl Andersen
l?cmd=lnk&kid=110944&bid=241720&dat=121642 ___ hibernate-devel mailing list hibernate-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTE

Re: [Hibernate] subversion repo layout

2006-03-20 Thread Max Rydahl Andersen
lists.sourceforge.net/lists/listinfo/hibernate-devel -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- This SF.Net email is sponsored by xPML, a groundbreak

Re: [Hibernate] Hibernate sf dl and tools

2006-03-20 Thread Max Rydahl Andersen
On Mon, 20 Mar 2006 20:55:22 +0100, Emmanuel Bernard <[EMAIL PROTECTED]> wrote: So hide the package feel free - I have no idea on how ;) /max Max Rydahl Andersen wrote: On Mon, 20 Mar 2006 16:23:50 +0100, Emmanuel Bernard <[EMAIL PROTECTED]> wrote: Tools in SF (Hibernate

Re: [Hibernate] Horrible hack to get schema from Ejb3Configuration

2006-03-20 Thread Max Rydahl Andersen
7 Willich, USt-IdNr.: DE 812 885 664 Kommunikation: Telefon +49 2154 9209-70, Telefax +49 2154 9209-900, www.xcom.de Handelsregister: Amtsgericht Krefeld, HRB 10340 Vorstand: Matthias Albrecht, Renate Becker-Grope, Marco Marty Vorsitzender des Aufsichtsrates: Stephan Steuer -- -- Max Rydah

Re: [Hibernate] Hibernate sf dl and tools

2006-03-20 Thread Max Rydahl Andersen
/max -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into w

[Hibernate] FYI fisheye svn

2006-03-17 Thread Max Rydahl Andersen
http://fisheye.jboss.org/viewrep/Hibernate/ and i already updated http://www.hibernate.org/30.html so know our move is complete. -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED

[Hibernate] tools bundling hibernate 3.2.x

2006-03-17 Thread Max Rydahl Andersen
Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and

Re: [Hibernate] Named primary key constraints

2006-03-17 Thread Max Rydahl Andersen
at least have a much higher chance of getting applied. -- -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate [EMAIL PROTECTED] http://hibernate.org JBoss Inc [EMAIL PROTECTED] --- This SF.Net email is sponsored by xPML, a groundbre

Re: [Hibernate] problem with many to many

2006-03-16 Thread Max Rydahl Andersen
lationship between C and AB (table) is an association many to many that creates a table ABC. So, how can i map this relationship? How can i represent the table AB? A --- AB --- B | | ABC | | C thanks... -- -- Max Rydahl Ander

  1   2   3   4   5   6   7   8   >