You can find the full documentation for jOOQ at .
jOOQ classes for working with the database are generated on the basis of the database schema described in the earlier chapter, The examples.fdb Database.
jooq-meta-3.9.2.jar
— The tool included in your build for navigating the database schema via generated objects
Along with those, of course, you will need to download the Jaybird driver for connecting to the Firebird database via JDBC: jaybird-full-3.0.5.jar
.
Configuration for Database Schema Classes
For generating the classes for the database schema, we create the configuration file :
Generating the Schema Classes
java -cp jooq-3.9.2.jar;jooq-meta-3.9.2.jar;jooq-codegen-3.9.2.jar;jaybird-full-3.0.0.jar;. org.jooq.util.GenerationTool example.xml
You can find more details about the process of generating classes at .