Uses of Class
de.fesenmeyer.dbnormalizer.core.dbaccess.DBException

Packages that use DBException
de.fesenmeyer.dbnormalizer.core The top-level package of the core logic, which contains the fundamental classes of DBNormalizer. 
de.fesenmeyer.dbnormalizer.core.algorithms Package which provides the several algorithms implemented by DBNormalizer. 
de.fesenmeyer.dbnormalizer.core.dbaccess Package containing database access code and utility methods. 
 

Uses of DBException in de.fesenmeyer.dbnormalizer.core
 

Methods in de.fesenmeyer.dbnormalizer.core that throw DBException
private  void DBNormalizerSession.assignFrom(DBConfig dbConfig)
          Assign a DB-Configuration to this session.
 void DBNormalizerSession.closeSession()
          Closes the session by closing the connection to the DB.
 void DBNormalizerSession.startSession()
          Starts the session by creating a connection to the DB specified by the DBNormalizerSession.dbConfig member.
 

Constructors in de.fesenmeyer.dbnormalizer.core that throw DBException
DBNormalizerSession(DBConfig dbConfig)
          Class Constructor for creating a session with DB-Configuration.
 

Uses of DBException in de.fesenmeyer.dbnormalizer.core.algorithms
 

Methods in de.fesenmeyer.dbnormalizer.core.algorithms that throw DBException
 FDCheckState FDChecker.checkFD(String qualifiedTableName, FD fd)
           Checks if the FD specified by argument fd is satisfied in the table specified by argument qualifiedTableName.
 DataSet FDChecker.getNotSatisfiedTupels(String qualifiedTableName, FD fd)
          Returns the tuples returned by the SQL query used for checking FDs.
 

Uses of DBException in de.fesenmeyer.dbnormalizer.core.dbaccess
 

Methods in de.fesenmeyer.dbnormalizer.core.dbaccess that throw DBException
 net.sourceforge.squirrel_sql.fw.sql.SQLConnection DBConnectionManager.createAndAddConnection(String sessionName, DBConfig dbConfig)
          Creates, adds and returns a connection for the session with the specified name and DB configuration.
 void DBConnectionManager.removeConnection(String sessionName)
          Removes and closes the connection for the session specified by argument sessionName.
 

Constructors in de.fesenmeyer.dbnormalizer.core.dbaccess that throw DBException
DataSet(ResultSet rs)
          Class constructor specifying a ResultSet by argument rs.