Package com.asakusafw.dmdl.thundergate.view

Examples of com.asakusafw.dmdl.thundergate.view.ViewDefinition


                if (filter.acceptModel(viewName) == false) {
                    LOG.info("ビュー{}はユーザの指定によりスキップされます", viewName);
                    continue;
                }
                String statement = rs.getString(2);
                results.add(new ViewDefinition(viewName, statement));
            }
        } finally {
            if (rs != null) {
                try {
                    rs.close();
View Full Code Here

TOP

Related Classes of com.asakusafw.dmdl.thundergate.view.ViewDefinition

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.