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

io.github.kiryu1223.plugin.datasource.SolonDataSourceManager Maven / Gradle / Ivy

package io.github.kiryu1223.plugin.datasource;

import io.github.kiryu1223.drink.core.dataSource.DataSourceManager;
import org.noear.solon.data.tran.TranUtils;

import java.sql.Connection;
import java.sql.SQLException;

public abstract class SolonDataSourceManager implements DataSourceManager
{
    @Override
    public Connection getConnection() throws SQLException
    {
        return TranUtils.getConnection(getDataSource());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy