com.wizarius.orm.database.mysql.MysqlConnection 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
package com.wizarius.orm.database.mysql;
import com.wizarius.orm.database.AbstractConnection;
import com.wizarius.orm.database.DBConnectionPool;
import java.sql.Connection;
/**
* @author Vladyslav Shyshkin on 09.04.17.
*/
public class MysqlConnection extends AbstractConnection {
public MysqlConnection(Connection connection, DBConnectionPool pool) {
super(connection, pool);
}
}