Package com.celum.dbtool.step

Examples of com.celum.dbtool.step.Version


    {
        if (versionUpdateSqlScript == null || versionUpdateSqlScript.isEmpty()) {
            return;
        }

        Version v = step.getVersion();
        Map<String, Object> args = new HashMap<String, Object>();
        args.put("version", v);
        args.put("name", step.getName());
        args.putAll(variables);
View Full Code Here


    {
        if (versionUpdateSqlScript == null || versionUpdateSqlScript.isEmpty()) {
            return;
        }

        Version v = step.getVersion();
        Map<String, Object> args = new HashMap<String, Object>();
        args.put(DbVars.PATCH_VERSION, v);
        args.put(DbVars.PATCH_NAME, step.getName());
        args.putAll(variables);
View Full Code Here

TOP

Related Classes of com.celum.dbtool.step.Version

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.