Package atg.service.jdbc

Examples of atg.service.jdbc.BasicDataSource


     */
    public static DataSource createBasicDataSource(String pUsername,
                                                   String pPassword,
                                                   String pDriver,
                                                   String pURL) {
        BasicDataSource datasource = new BasicDataSource();
        datasource.setUser(pUsername);
        datasource.setPassword(pPassword);
        datasource.setDriver(pDriver);
        datasource.setURL(pURL);

        return datasource;
    }
View Full Code Here

TOP

Related Classes of atg.service.jdbc.BasicDataSource

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.