Skip to content

Integration overview

Some warm words on integration at all.

The generated classes work on a native SQL connection, which is provided by the following functional interface:

JdbcConnectionProvider.java
@FunctionalInterface
public interface JdbcConnectionProvider {
Connection getConnection() throws SQLException;
}

Therefor all classes have a constructor which needs a kind of connection provider, from which every method will get the current connection.

For every integration you need to provide the correct implementation of JdbcConnectionProvider. Please find below some examples: