use of org.jooq.impl.DialectAwareJooqConfiguration in project collect by openforis.
the class DbInitializer method start.
public void start() {
DialectAwareJooqConfiguration jooqConf = new DialectAwareJooqConfiguration(connectionProvider);
CollectDSLContext dslContext = new CollectDSLContext(jooqConf);
if (!dslContext.isSchemaLess()) {
createDbSchema();
}
}
Aggregations