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

com.wizarius.orm.database.ConnectionDriver Maven / Gradle / Ivy

There is a newer version: 0.0.27.3
Show newest version
package com.wizarius.orm.database;

import com.wizarius.orm.database.exceptions.DBException;

import java.sql.Connection;

/**
 * @author Vladyslav Shyshkin on 09.04.17.
 */
public interface ConnectionDriver {
    Connection getConnection() throws DBException;

    /**
     * Get connection url
     *
     * @return connection url
     */
    String getURL();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy