com.wizarius.orm.database.connection.ConnectionDriver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wizarius-orm Show documentation
Show all versions of wizarius-orm Show documentation
Java orm for Postgres or Mysql with migration system and connection pool
The newest version!
package com.wizarius.orm.database.connection;
import com.wizarius.orm.database.DBException;
import com.wizarius.orm.database.actions.IDBDialect;
import java.sql.Connection;
/**
* @author Vladyslav Shyshkin on 09.04.17.
*/
public interface ConnectionDriver {
/**
* Returns sql connection
*
* @return jdbc connection
* @throws DBException on unable to initialize
*/
Connection getConnection() throws DBException;
/**
* Returns connection url
*
* @return connection url
*/
String getURL();
/**
* Returns db dialect
*
* @return db dialect
*/
IDBDialect getDialect();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy