All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kestra.jdbc.JooqSettings Maven / Gradle / Ivy

There is a newer version: 0.19.11
Show newest version
package io.kestra.jdbc;

import io.micronaut.context.annotation.Factory;
import jakarta.inject.Singleton;
import org.jooq.conf.RenderKeywordCase;
import org.jooq.conf.Settings;

@Factory
public class JooqSettings {
    @Singleton
    public Settings settings() {
        return new Settings()
            .withRenderKeywordCase(RenderKeywordCase.UPPER)
            .withRenderFormatted(true)
            .withFetchWarnings(true);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy