You're probably going to need to support this type on a JDBC level, i.e. cast bind variables to ?::extension_schema.my_type.
The best way to do that is by using custom data type bindings. An example using json is documented here: http://www.jooq.org/doc/latest/manual/sql-building/queryparts/custom-bindings Hope this helps. Let me know if you encounter any issues Lukas 2015-12-11 15:49 GMT+01:00 Tim Dudgeon <[email protected]>: > I have a Postgres extension that adds a custom column type to the > database. To all intents it acts externally as a TEXT column type. > How is this best handled in jOOQ? Should I be looking to create a new > org.jooq.Datatype implementation for this? > thx > Tim > > -- > 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. > -- 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.
