I'd like to know if there's a way to disable database constraints in jOOQ for different databases in an agnostic way. For example, disabling foreign key constraints in MySQL and PostgreSQL differs quite a lot:
MySQL
SET FOREIGN_KEY_CHECKS=0;
PostgreSQL
Not actually too sure, but will probably involve disabling triggers.