Package arjdbc.util

Examples of arjdbc.util.CallResultSet


                try {
                    statement = connection.prepareCall("{call " + query + " }");
                    setStatementParameters(context, connection, statement, binds);
                    statement.registerOutParameter(outIndex, outType);
                    statement.executeUpdate();
                    ResultSet resultSet = new CallResultSet(statement);
                    return jdbcToRuby(context, context.getRuntime(), outIndex, outType, resultSet);
                }
                catch (final SQLException e) {
                    debugErrorSQL(context, query);
                    throw e;
View Full Code Here

TOP

Related Classes of arjdbc.util.CallResultSet

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.