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

se.ugli.habanero.j.datasource.C3P0DataSourceFactory Maven / Gradle / Ivy

There is a newer version: 1.8.1.1
Show newest version
package se.ugli.habanero.j.datasource;

import java.util.Properties;

import javax.sql.DataSource;

import com.mchange.v2.c3p0.ComboPooledDataSource;

class C3P0DataSourceFactory {

	static DataSource create(final Properties properties) {
		final ComboPooledDataSource dataSource = new ComboPooledDataSource();
		dataSource.setProperties(properties);
		return dataSource;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy