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

ch.inftec.ju.db.DatabaseMetaDataCallback Maven / Gradle / Ivy

There is a newer version: 4.5.1-11
Show newest version
package ch.inftec.ju.db;

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

/**
 * Callback interface to retrieve DatabaseMetaData. Used by JuEmUtil.
 * @author Martin
 *
 * @param  Return type of the meta data extracted by the callback method
 */
public interface DatabaseMetaDataCallback {
	/**
	 * Processes the DatabaseMetaData and returns the extracted data.
	 * @param dbmd DatabaseMetaData
	 * @return Data
	 * @throws SQLException that will be wrapped into a Runtime exception by JuEmUtil
	 */
	T processMetaData(DatabaseMetaData dbmd) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy