Package org.apache.commons.jelly.tags.sql

Examples of org.apache.commons.jelly.tags.sql.ResultImpl


            } else {
                statement = conn.createStatement();
                rs = statement.executeQuery(sqlStatement);
            }

            result = new ResultImpl(rs, startRow, maxRows);
            context.setVariable(var, result);

            // always close the result set first since it may be closed by
            // JDBC 3 when closing statements
View Full Code Here

TOP

Related Classes of org.apache.commons.jelly.tags.sql.ResultImpl

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.