Package org.mule.module.db.internal.result.statement

Examples of org.mule.module.db.internal.result.statement.OutputParamResult


        StatementResultIterator iterator = new StatementResultIterator(null, statement, queryTemplate, null, null);

        Object nextResult = iterator.next();

        assertThat(nextResult, is(instanceOf(OutputParamResult.class)));
        OutputParamResult outputParamResult = (OutputParamResult) nextResult;
        assertThat(outputParamResult.getName(), equalTo("param1"));
        assertThat((Integer) outputParamResult.getResult(), equalTo(paramValue));
    }
View Full Code Here

TOP

Related Classes of org.mule.module.db.internal.result.statement.OutputParamResult

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.