Hello, I am not very experienced with JDBC-ODBC, but In principle, jOOQ has three requirements:
1) For code generation, you must provide jOOQ with a configuration file as documented here: https://sourceforge.net/apps/trac/jooq/wiki/Manual/META/Configuration If your JDBC-ODBC bridge can be configured with the usual JDBC parameters (connection URL, user, password), then that should work 2) Your RDBMS (accessed via ODBC) must be any of the officially supported RDBMS (So far: DB2, Derby, H2, HSQLDB, Ingres, MySQL, Oracle, Postgres, SQLite, SQL Server, Sybase). jOOQ must be able to access the RDBMS's dictionary views through the configured JDBC Connection from step 1) to retrieve database meta data for code generation. 3) For run-time usage, you must provide jOOQ's Factory with a JDBC Connection, as documented here: https://sourceforge.net/apps/trac/jooq/wiki/Manual/JOOQ/Factory This should be feasible with a JDBC-ODBC bridge, too. I'm curious about some testing results, should you try jOOQ with JDBC-ODBC! Cheers Lukas
