Package org.flywaydb.core.internal.util.jdbc

Examples of org.flywaydb.core.internal.util.jdbc.DriverDataSource


            throw new IOException(String.format("directory %s should exists and be a directory", this.baseDirectory));
        }

        // used for Flyway 3.0:
        ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
        DataSource ds = new DriverDataSource(classLoader, null, url, user, password, initSql);
        support = DbSupportFactory.createDbSupport(ds.getConnection(), true);

    }
View Full Code Here

TOP

Related Classes of org.flywaydb.core.internal.util.jdbc.DriverDataSource

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.