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

net.anwiba.commons.jdbc.database.IDatabaseFacade Maven / Gradle / Ivy

There is a newer version: 1.2.50
Show newest version
/*
 * #%L
 * *
 * %%
 * Copyright (C) 2007 - 2017 Andreas W. Bartels
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 2.1 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */
package net.anwiba.commons.jdbc.database;

import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;

import net.anwiba.commons.jdbc.name.IDatabaseConstraintName;
import net.anwiba.commons.jdbc.name.IDatabaseIndexName;
import net.anwiba.commons.jdbc.name.IDatabaseSequenceName;
import net.anwiba.commons.jdbc.name.IDatabaseTableName;
import net.anwiba.commons.jdbc.name.IDatabaseTriggerName;

public interface IDatabaseFacade {

  //  List getIndicies(Connection connection, String schema) throws SQLException;

  List getIndicies(Connection connection, IDatabaseTableName tableName) throws SQLException;

  ResultSet getIndexMetadata(Connection connection, IDatabaseIndexName schema) throws SQLException;

  List getTriggers(Connection connection, IDatabaseTableName tableName) throws SQLException;

  ResultSet getTriggerMetadata(Connection connection, IDatabaseTriggerName schema) throws SQLException;

  String getTriggerStatement(Connection connection, IDatabaseTriggerName schema) throws SQLException;

  List getSequences(Connection connection, String schema) throws SQLException;

  ResultSet getSequenceMetadata(Connection connection, IDatabaseSequenceName schema) throws SQLException;

  boolean supportsSequences();

  boolean supportsTrigger();

  boolean supportsIndicies();

  List getConstraints(Connection connection, IDatabaseTableName tableName) throws SQLException;

  ResultSet getConstraintMetadata(Connection connection, IDatabaseConstraintName schema) throws SQLException;

  boolean supportsConstaints();

  boolean isTable(IDatabaseTableName table);

  Iterable getTableFilters();

  List getSchemaNames(Connection connection, String catalog) throws SQLException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy