Hi,

  Consider the following typical query execution. I am populating a JPA 
annotated POJO called MyRow
   
               d.select( ..)
                .from(  ... ).as("S")
                .where( ... )
                .groupBy(groupByFields)
                .fetchInto(MyRow.class);

What I need to do is pass additional information to the MyRow constructor. 
How can this be achieved?

For example let's say I have a class called *MyRowParserHelper* that is 
used by the *MyRow* class. I need to pass an instance of the  
*MyRowParserHelper*
(it can be the same instance) to each instance of the *MyRow* class created 
by the *fetchInto* method. Is this possible?

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to