On Wed, Jun 25, 2014 at 10:56 AM, Lukas Eder <[email protected]> wrote: > It should be bit, but to be sure, check what is reported by > INFORMATION_SCHEMA.COLUMNS.COLUMN_TYPE
select column_type from information_schema.columns where table_name = 'members' and column_name = 'admin'; column_type ----------- tinyint(1) So armed with this knowledge, I am now able to use the following stanza in the generator config: <forcedType> <name>BOOLEAN</name> <types>(?i:TINYINT)</types> </forcedType> Thank you very much for your help :-) -- 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.
