Hi, I have a use case where I'm trying to write a date to a database. In my application, the date is stored as a jodatime DateTime object. I'm trying to write this object using the DSL to a generic database which could be any type of vendor (MySQL, Oracle, Postgres). I can convert the jodatime object to some type of java.sql date type.
What I'm confused on is how JOOQ handles writing to vendor specific data types like oracle's TIMESTAMPTZ. Also, if JOOQ does not handle a case where a column is a custom data type like oracle's TIMESTAMPTZ, how do I use JOOQ to query and oracle table to pull back the table's schema/metadata. Thanks,
