HI,

I am trying to get forcedTYpes defined in my pom.xml to generate code is 
our preferred type (Env mysql, jooq 3.5.0) 

columsn marked an INT , INT(11) get generated with type Integer, but we 
would like them as Llong the generated java classes. Also need tinyint(1) 
to mapped to Boolean.

I have tried some variation of below declarations, but still not getting 
the preferred types.
<forcedTypes>
                <forcedType>
                    <name>TINYINT(1)</name>
 <expression>.*</expression>
                    <types>BOOLEAN</types>
                </forcedType>
                <forcedType>
                    <name>BIGINT</name>
                    <expression>.*</expression>
                    <types>INT</types>
                </forcedType>
            </forcedTypes>

-- 
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