Call for Papers Opens for ApacheCon US 2007

2007-04-16 Thread Andrus Adamchik
FYI: Call for Papers Opens for ApacheCon US 2007 The Call for Papers is now open for ApacheCon US, to be held November 12-16 at the Peachtree Westin, Atlanta. The conference will consist of two day of tutorials (November 12-13) and three days of regular conference sessions

Re: Querymetadata

2007-04-16 Thread Andrus Adamchik
On Apr 16, 2007, at 5:02 PM, jerome moliere wrote: Once again I think that your answer is perfect It's just a refactoring of the code I planned to put in place... Great! I wasn't sure I answered your question the first time :-) Andrus

Re: why not middlegen

2007-04-16 Thread jerome moliere
2007/4/16, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: Hi all I'm newbie using cayenne but i'd like to know why it should be better than middlegen. middlegen is the most popular MDA open source project project in the Java world... So it doesn't deal with how to store/retrieve data from db... Y

Re: Querymetadata

2007-04-16 Thread jerome moliere
2007/4/16, Andrus Adamchik <[EMAIL PROTECTED]>: On Apr 16, 2007, at 3:28 PM, jerome moliere wrote: > thanks for the reply andrus... > so rather than imaginating factories with named configuration > parameters > (metadata) I'd put in place named queries carrying the > configuration ? > Why

Re: why not middlegen

2007-04-16 Thread Mike Kienenberger
On Apr 16, 2007, at 4:26 PM, gdilem@@libero..it wrote: > And I wonder if exists a apache project for automatically generate > swing GUI by a schema data base. You might take a look at jmatter. It's not an apache project, though. And I can't remember if it pulls the schema from the database.

Re: Querymetadata

2007-04-16 Thread Andrus Adamchik
On Apr 16, 2007, at 3:28 PM, jerome moliere wrote: thanks for the reply andrus... so rather than imaginating factories with named configuration parameters (metadata) I'd put in place named queries carrying the configuration ? Why not. Jerome, As it happened in the past a few t

Re: why not middlegen

2007-04-16 Thread Andrus Adamchik
Hi, On Apr 16, 2007, at 4:26 PM, gdilem@@libero..it wrote: Hi all I'm newbie using cayenne but i'd like to know why it should be better than middlegen. I am not an expert on Middlegen, but AFAIK it is not a persistence technology, rather it serves as a mapping add-on on top of other pers

why not middlegen

2007-04-16 Thread [EMAIL PROTECTED]
Hi all I'm newbie using cayenne but i'd like to know why it should be better than middlegen. And I wonder if exists a apache project for automatically generate swing GUI by a schema data base. Regards Giovanni Di Lembo -- Leggi GRATIS le tue m

Re: Querymetadata

2007-04-16 Thread jerome moliere
2007/4/16, Andrus Adamchik <[EMAIL PROTECTED]>: While tweaking QueryMetadata is often useful for custom queries, in this case it is not needed. Two most-often used concrete query classes, SelectQuery and SQLTemplate, define 'setFetchLimit' method and 'setPageSize' method. More on QueryMetadata.

Re: Querymetadata

2007-04-16 Thread Andrus Adamchik
While tweaking QueryMetadata is often useful for custom queries, in this case it is not needed. Two most-often used concrete query classes, SelectQuery and SQLTemplate, define 'setFetchLimit' method and 'setPageSize' method. More on QueryMetadata... It is intended for Cayenne runtime to mak

Querymetadata

2007-04-16 Thread jerome moliere
Hi all, playing around with cayenne, I'd like to set fetching limits and page sizes for my queries, this seems to be done through QueryMetadata , but this interface does not provide any setter .. So I'd like to know the proper way for forging its own metadata to be passed to the Query to be run...