com.terapico.utils.DBQuerier Maven / Gradle / Ivy
The newest version!
package com.terapico.utils;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
public interface DBQuerier {
boolean isTableExists(String tableName) throws Exception;
boolean isFieldExists(String tableName, String fieldName) throws Exception;
boolean isFieldSame(String tableName, String fieldName, String fieldType) throws Exception;
Map queryForMap(String sql, Object[] objects);
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy