Package org.geotools.data.jdbc.datasource

Examples of org.geotools.data.jdbc.datasource.DBCPDataSourceFactory


*
* @source $URL$
*/
public class DataSourceFinderTest extends TestCase {
    public void testDbcpFactory() throws IOException {
        assertTrue(new DBCPDataSourceFactory().isAvailable());
        DataSourceFinder.scanForPlugins();
       
        Map map = new HashMap();
        map.put(DBCPDataSourceFactory.DSTYPE.key, "DBCP");
        map.put(DBCPDataSourceFactory.DRIVERCLASS.key, "org.h2.Driver");
View Full Code Here

TOP

Related Classes of org.geotools.data.jdbc.datasource.DBCPDataSourceFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.