Package org.exolab.jms.tools.db

Examples of org.exolab.jms.tools.db.DBTool


     *
     * @param config the configuration to use
     * @throws ServiceException for any error
     */
    public DataLoader(Configuration config) throws ServiceException {
        DBTool tool = new DBTool(config);
        tool.drop();
        tool.create();

        _service = new DatabaseService(config);
        _service.start();
        _adapter = _service.getAdapter();
        _connection = _service.getConnection();
View Full Code Here

TOP

Related Classes of org.exolab.jms.tools.db.DBTool

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.