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

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> queryForMapList(String sql, Object[] objects);

    LinkedHashMap> queryConstrainsByTableName(String schemaName, String tableName) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy