Package org.exolab.jms.tools.db.migration

Examples of org.exolab.jms.tools.db.migration.V061toV072SchemaConverter


    public static SchemaConverter create(String fromVersion, String toVersion,
                                         Connection connection) {
        SchemaConverter result = null;
        if (fromVersion.equals(VERSION_0_6_1) &&
            toVersion.equals(VERSION_0_7_2)) {
            result = new V061toV072SchemaConverter(connection);
        }
        if (fromVersion.equals(VERSION_0_7_2) &&
            toVersion.equals(VERSION_0_7_6)) {
            result = new V072toV076SchemaConverter(connection);
        }
View Full Code Here

TOP

Related Classes of org.exolab.jms.tools.db.migration.V061toV072SchemaConverter

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.