2016-05-27 15:06 GMT+02:00 <[email protected]>: > > In the end, would you advise using DatabaseMetaData or seeing if an > exception comes back ? >
I think the exception solution is the most quick and dirty, but still somewhat clean approach. DatabaseMetaData isn't implemented optimally in all JDBC drivers. If you're using jOOQ for DDL (or if at least you contain your DDL in a specific application location only), then you can still cache the results of your "meta queries" until the next DDL statement is executed. Hope this helps, Lukas -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
