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

com.github.kislayverma.rulette.mysql.dao.BaseDao Maven / Gradle / Ivy

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