New versions: Dev (3.15) | Latest (3.14) | 3.13 | 3.12 | 3.11 | 3.10 | 3.9 | 3.8 | Old versions: 3.7 | 3.6 | 3.5 | 3.4 | 3.3
Data type rewrites
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
Sometimes, the actual database data type does not match the SQL data type that you would like to use in Java. This is often the case for ill-supported SQL data types, such as BOOLEAN
or UUID
. jOOQ's code generator allows you to apply simple data type rewriting. The following configuration will rewrite IS_VALID
columns in all tables to be of type BOOLEAN
.
<database> <!-- Associate data type rewrites with database columns --> <forcedTypes> <forcedType> <!-- Specify any data type that is supported in your database, or if unsupported, a type from org.jooq.impl.SQLDataType --> <name>BOOLEAN</name> <!-- A Java regex matching fully-qualified columns, attributes, parameters. Use the pipe to separate several expressions. If provided, both "expressions" and "types" must match. --> <expression>.*\.IS_VALID</expression> <!-- A Java regex matching data types to be forced to have this type. If provided, both "expressions" and "types" must match. --> <types>.*</types> </forcedType> </forcedTypes> </database>
You must provide at least either an <expressions/>
or a <types/>
element, or both.
See the section about Custom data types for rewriting columns to your own custom data types.
Feedback
Do you have any feedback about this page? We'd love to hear it!