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

org.noear.wood.solon.integration.DsConnectionFactoryImpl Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
package org.noear.wood.solon.integration;

import org.noear.solon.data.tran.TranUtils;
import org.noear.wood.DbConnectionFactory;

import javax.sql.DataSource;
import java.sql.Connection;
import java.sql.SQLException;

/**
 * @author noear
 * @since 1.10
 */
class DsConnectionFactoryImpl extends DbConnectionFactory {
    @Override
    public Connection getConnection(DataSource ds) throws SQLException {
        return TranUtils.getConnectionProxy(ds);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy