kz.greetgo.security.crypto.jdbc.DbDialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.security Show documentation
Show all versions of greetgo.security Show documentation
Security infrastructure used in greetgo!
package kz.greetgo.security.crypto.jdbc;
import kz.greetgo.security.crypto.jdbc.create_table.CreateTable;
import java.sql.SQLException;
public interface DbDialect {
boolean isNoTable(SQLException e);
boolean isRecordAlreadyExists(SQLException e);
String generateCreateTableDDL(CreateTable createTable);
}