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

com.github.chengyuxing.sql.plugins.TemplateFormatter Maven / Gradle / Ivy

Go to download

Light wrapper of JDBC, support ddl, dml, query, plsql/procedure/function, transaction and manage sql file.

There is a newer version: 9.0.2
Show newest version
package com.github.chengyuxing.sql.plugins;

import org.jetbrains.annotations.NotNull;

@FunctionalInterface
public interface TemplateFormatter {
    /**
     * Non-prepared Sql template ({@code ${[!]key}}) formatter.
     *
     * @param value     value
     * @param isSpecial key start with {@code !} or not
     * @return formatted content
     */
    @NotNull String format(Object value, boolean isSpecial);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy