Package atg.tools.dynunit.adapter.gsa

Examples of atg.tools.dynunit.adapter.gsa.SQLFileParser


        }
    }

    public void executeSQLFile(@NotNull File pFile) {
        logger.info("Attempting to execute {}", pFile);
        SQLFileParser parser = new SQLFileParser();
        Collection<String> c = parser.parseSQLFile(pFile.getAbsolutePath());
        for (String cmd : c) {
            try {
                if ("Oracle".equals(databaseType)) {
                    cmd = StringUtils.replace(cmd, "numeric", "NUMBER");
                    cmd = StringUtils.replace(cmd, "varchar ", "VARCHAR2 ");
View Full Code Here

TOP

Related Classes of atg.tools.dynunit.adapter.gsa.SQLFileParser

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.