Hi Marko, > In our Java project we have started to use jooq for query building instead > of plain SQL strings. The library is awesome, but I have a question (since I > am jooq-newbie): Is it possible to create database using jooq, but WITHOUT > PROJECT INCLUDED jooq mapping/generator?
I'm not sure what you mean. > Is it possible to create database using jooq Do you mean to generate code, or do you mean to create a database? (jOOQ has no formal support for DDL, but you can still use plain SQL commands to execute DDL) > but WITHOUT PROJECT INCLUDED jooq mapping/generator? Do you mean you wouldn't include jooq-meta and jooq-codegen? Cheers Lukas
