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

uk.ac.starlink.table.jdbc.Connector Maven / Gradle / Ivy

There is a newer version: 4.3
Show newest version
package uk.ac.starlink.table.jdbc;

import java.sql.Connection;
import java.sql.SQLException;

/**
 * Interface for objects which can supply a JDBC Connection to
 * a single database.
 * 

* Should its use be replaced by use of the similar but bigger * (and beany) javax.sql.DataSource interface? */ public interface Connector { /** * Returns a JDBC Connection object. * * @return a connection */ Connection getConnection() throws SQLException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy