Hello John, > When I use 2.3.0, I get 0 schemata created (similar output as reported in > this post: https://groups.google.com/forum/#!topic/jooq-user/4vbCjO91QKE)
Yes that issue will be fixed ASAP. You're using Postgres too, then? > When I use 2.0.6, I get the Schema and Factory objects generated, but > nothing else. jOOQ can only generate what is available through the dictionary views (i.e. information_schema). As stated in that other thread, this means that the database user you're using to generate code with must have some sort of privilege to the desired objects (tables, routines, etc). > Is there a way I can turn on more verbose logging output to help diagnose > the problem? Yes, the easiest way is to put log4j on the classpath and use a simple log4j.xml like this one here: https://github.com/jOOQ/jOOQ/blob/master/jOOQ-test/src/log4j.xml Setting the priority to debug will log all queries and results to the dictionary views
