Hello,

2013/8/27 <[email protected]>

> thanks a lot,
>
> a last question about firebird and code generation, is there a way to not
> generate system table like RDB$ ?, because there is no schema in firebird !
>

Of course, by reading all the way through the aforementioned manual pages
:-)

- http://www.jooq.org/doc/3.1/**manual/code-generation/**
codegen-configuration/<http://www.jooq.org/doc/3.1/manual/code-generation/codegen-configuration/>
- 
http://www.jooq.org/doc/3.1/**manual/code-generation/**codegen-advanced/<http://www.jooq.org/doc/3.1/manual/code-generation/codegen-advanced/>

You'll then find:

      <!-- All elements that are generated from your schema (A Java
regular expression.
           Use the pipe to separate several expressions) Watch out for
           case-sensitivity. Depending on your database, this might be
           important! You can create case-insensitive regular expressions
           using this syntax: (?i:expr)A comma-separated list of regular
           expressions -->
      <includes>.*</includes>

      <!-- All elements that are excluded from your schema (A Java
regular expression.
           Use the pipe to separate several expressions). Excludes match before
           includes -->
      <excludes></excludes>

Cheers,
Lukas


> thanks in advance
>
> Le lundi 26 août 2013 10:47:08 UTC+2, Lukas Eder a écrit :
>>
>> These two sections of the manual will provide you with some feedback:
>>
>> - http://www.jooq.org/doc/3.1/**manual/code-generation/**
>> codegen-configuration/<http://www.jooq.org/doc/3.1/manual/code-generation/codegen-configuration/>
>> - http://www.jooq.org/doc/3.1/**manual/code-generation/**
>> codegen-advanced/<http://www.jooq.org/doc/3.1/manual/code-generation/codegen-advanced/>
>>
>> In particular:
>>
>>   <!-- Generate POJOs in addition to Record classes for usage of the
>>        ResultQuery.fetchInto(Class) API
>>        Defaults to false -->
>>   <pojos>false</pojos>
>>
>>
>>
>> 2013/8/26 <[email protected]>
>>
>>> Magnifique,
>>>
>>> and is there a way to generate automaticaly all DTO (Product object) ?
>>>
>>> thanks in advance
>>>
>>> Le dimanche 25 août 2013 21:58:18 UTC+2, Aurélien Manteaux a écrit :
>>>
>>>> Hello,
>>>>
>>>> JOOK like in Java Object Oriented Kuerying ? :)
>>>>
>>>> You can do
>>>> List<Product> result = create.select().from(PRODUCTS)****
>>>> .fetch().into(Product.class);
>>>>
>>>> Cheers,
>>>>
>>>> Aurélien
>>>>
>>>> On Sunday, August 25, 2013 7:17:39 PM UTC+2, [email protected] wrote:
>>>>>
>>>>> hello everybody,
>>>>>
>>>>> it is possible with JOOK to retrieve directly the dto with a request ?
>>>>> :
>>>>>
>>>>> ex :
>>>>>
>>>>>
>>>>> in this exemple i try to retrieve all rows of table product
>>>>>
>>>>>
>>>>> List<Product> result = create.select().from(PRODUCTS)****.fetch();
>>>>>
>>>>>  --
>>> 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 jooq-user+...@**googlegroups.com.
>>>
>>> For more options, visit 
>>> https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out>
>>> .
>>>
>>
>>  --
> 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/groups/opt_out.
>

-- 
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/groups/opt_out.

Reply via email to