com.github.chengyuxing.sql.plugins.SqlParseChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbit-sql Show documentation
Show all versions of rabbit-sql Show documentation
Light wrapper of JDBC, support ddl, dml, query, plsql/procedure/function, transaction and manage sql
file.
package com.github.chengyuxing.sql.plugins;
import org.jetbrains.annotations.NotNull;
@FunctionalInterface
public interface SqlParseChecker {
/**
* Do something for sql.
*
* @param sql sql
* @return new sql
*/
@NotNull String handle(@NotNull final String sql);
}