com.github.kislayverma.rulette.mysql.dao.BaseDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rulette-mysql-provider Show documentation
Show all versions of rulette-mysql-provider Show documentation
Mysql integration for Rulette
The newest version!
package com.github.kislayverma.rulette.mysql.dao;
import java.io.IOException;
import java.sql.Connection;
import java.sql.SQLException;
public abstract class BaseDao {
protected Connection getConnection() throws SQLException, IOException {
return DataSource.getInstance(null).getConnection();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy