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

top.tanmw.generator.db.DbQuery Maven / Gradle / Ivy

There is a newer version: 1.3.26
Show newest version
package top.tanmw.generator.db;

import java.sql.DatabaseMetaData;
import java.sql.ResultSet;
import java.sql.SQLException;

/**
 * @author TMW
 * @since 2022/3/2 9:55
 */
public interface DbQuery {

    String getShowTablesSql();

    String getShowTablesCommentSql();

    ResultSet getResultSet(DatabaseMetaData databaseMetaData, String tableName) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy