jooqpreprocessor.parsers.NameUTF8 Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of jooq-preprocessor Show documentation
                Show all versions of jooq-preprocessor Show documentation
A preprocessor for SQL files to allow for parsing with JOOQ parser
                
             The newest version!
        
        package jooqpreprocessor.parsers;
public final class NameUTF8 implements StatementParser {
    @Override
    public boolean matches(final String statement) {
        return statement.trim().equals("SET NAMES utf8mb4");
    }
    @Override
    public String convert(final String statement) {
        return "";
    }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy