Uses of Class
org.midao.jdbc.core.handlers.model.QueryParameters

Packages that use QueryParameters
org.midao.jdbc.core Midao Core functionality 
org.midao.jdbc.core.handlers   
org.midao.jdbc.core.handlers.input Input handlers 
org.midao.jdbc.core.handlers.input.named   
org.midao.jdbc.core.handlers.input.query   
org.midao.jdbc.core.handlers.model   
org.midao.jdbc.core.handlers.output Output handlers 
org.midao.jdbc.core.handlers.type Type handlers 
org.midao.jdbc.core.handlers.utils   
org.midao.jdbc.core.metadata Metadata handlers 
org.midao.jdbc.core.processor I/O Processors 
org.midao.jdbc.core.service Query Runner services definition 
org.midao.jdbc.core.statement Statement handlers 
 

Uses of QueryParameters in org.midao.jdbc.core
 

Methods in org.midao.jdbc.core that return QueryParameters
 QueryParameters QueryRunner.call(AbstractQueryInputHandler inputHandler)
          Executes the given CALL SQL statement.
protected
<T> QueryParameters
AbstractQueryRunner.call(StatementHandler stmtHandler, java.lang.String sql, QueryParameters params, OutputHandler<T> outputHandler)
          Executes the given CALL SQL statement.
protected  QueryParameters[] AbstractQueryRunner.getQueryParams(InputHandler[] inputHandlers)
          Reads array of InputHandler and returns array of parameter values Used during batch invocation
protected  QueryParameters[] AbstractQueryRunner.getQueryParams(java.lang.Object[][] params)
          Converts array of parameter values (as array) and converts it into array of QueryParameters Used during batch invocation
 

Methods in org.midao.jdbc.core that return types with arguments of type QueryParameters
 java.util.concurrent.Future<QueryParameters> AsyncQueryRunner.call(AbstractQueryInputHandler inputHandler)
          
 

Methods in org.midao.jdbc.core with parameters of type QueryParameters
protected  int[] AbstractQueryRunner.batch(StatementHandler stmtHandler, java.lang.String sql, QueryParameters[] params)
          Execute a batch of SQL INSERT, UPDATE, or DELETE queries.
protected
<T> QueryParameters
AbstractQueryRunner.call(StatementHandler stmtHandler, java.lang.String sql, QueryParameters params, OutputHandler<T> outputHandler)
          Executes the given CALL SQL statement.
protected
<T> T
AbstractQueryRunner.query(StatementHandler stmtHandler, java.lang.String sql, OutputHandler<T> outputHandler, QueryParameters params)
          Executes the given SELECT SQL query and returns a result object.
protected
<T> T
AbstractQueryRunner.update(StatementHandler stmtHandler, java.lang.String sql, OutputHandler<T> outputHandler, QueryParameters params)
          Executes the given INSERT, UPDATE, or DELETE SQL statement without any replacement parameters.
 

Uses of QueryParameters in org.midao.jdbc.core.handlers
 

Fields in org.midao.jdbc.core.handlers declared as QueryParameters
static QueryParameters HandlersConstants.EMPTY_QUERY_PARAMS
           
 

Uses of QueryParameters in org.midao.jdbc.core.handlers.input
 

Methods in org.midao.jdbc.core.handlers.input that return QueryParameters
 QueryParameters InputHandler.getQueryParameters()
          Returns named parameters and their values
 

Uses of QueryParameters in org.midao.jdbc.core.handlers.input.named
 

Methods in org.midao.jdbc.core.handlers.input.named that return QueryParameters
 QueryParameters MapListInputHandler.getQueryParameters()
           
 QueryParameters MapInputHandler.getQueryParameters()
           
 QueryParameters BeanListInputHandler.getQueryParameters()
           
 QueryParameters BeanInputHandler.getQueryParameters()
           
abstract  QueryParameters AbstractNamedListInputHandler.getQueryParameters()
          Returns named parameters and their values
abstract  QueryParameters AbstractNamedInputHandler.getQueryParameters()
          Returns named parameters and their values
 

Methods in org.midao.jdbc.core.handlers.input.named with parameters of type QueryParameters
 T BeanInputHandler.updateInput(QueryParameters updatedInput)
           
<T> T
MapInputHandler.updateInput(QueryParameters updatedInput)
           
abstract
<T> T
AbstractNamedInputHandler.updateInput(QueryParameters updatedInput)
          
 

Uses of QueryParameters in org.midao.jdbc.core.handlers.input.query
 

Methods in org.midao.jdbc.core.handlers.input.query that return QueryParameters
 QueryParameters QueryInputHandler.getQueryParameters()
           
abstract  QueryParameters AbstractQueryInputHandler.getQueryParameters()
          Returns named parameters and their values
 QueryParameters QueryInputHandler.update(java.lang.Object[] outParamValues)
           
abstract  QueryParameters AbstractQueryInputHandler.update(java.lang.Object[] outParamValues)
          This implementation allows updating input parameters with values returned from Query call.
 

Constructors in org.midao.jdbc.core.handlers.input.query with parameters of type QueryParameters
QueryInputHandler(QueryInputProcessor processor, java.lang.String encodedQuery, QueryParameters inputParameter, java.lang.String parameterName)
           
QueryInputHandler(java.lang.String encodedQuery, QueryParameters inputParameter)
          Creates new QueryInputHandler instance
QueryInputHandler(java.lang.String encodedQuery, QueryParameters inputParameter, java.lang.String parameterName)
          Creates new QueryInputHandler instance
 

Uses of QueryParameters in org.midao.jdbc.core.handlers.model
 

Methods in org.midao.jdbc.core.handlers.model that return QueryParameters
 QueryParameters QueryParametersLazyList.get(int index)
          Returns element at specified position.
 QueryParameters QueryParametersLazyList.remove(int index)
          Currently usage is not allowed.
 QueryParameters QueryParametersLazyList.set(int index, QueryParameters element)
          Sets value in cache.
 QueryParameters QueryParameters.set(java.lang.String key, java.lang.Object value)
          Setter function of QueryParameters
 QueryParameters QueryParameters.set(java.lang.String key, java.lang.Object value, java.lang.Integer type)
          Setter function of QueryParameters
 QueryParameters QueryParameters.set(java.lang.String key, java.lang.Object value, java.lang.Integer type, QueryParameters.Direction direction)
          Setter function of QueryParameters
 QueryParameters QueryParameters.set(java.lang.String key, java.lang.Object value, java.lang.Integer type, QueryParameters.Direction direction, java.lang.Integer position)
          Setter function of QueryParameters
 QueryParameters QueryParameters.set(java.lang.String key, java.lang.Object value, QueryParameters.Direction direction)
          Setter function of QueryParameters
 QueryParameters QueryParameters.setClassName(java.lang.String className)
          Useful in cases if QueryParameter was constructed from Bean and we need to save class name
 QueryParameters QueryParameters.updateDirection(java.lang.String key, QueryParameters.Direction direction)
          Updates direction of specified key
 QueryParameters QueryParameters.updatePosition(java.lang.String key, java.lang.Integer position)
          Updates position of specified key
 QueryParameters QueryParameters.updateType(java.lang.String key, java.lang.Integer type)
          Updates type of specified key
 QueryParameters QueryParameters.updateValue(java.lang.String key, java.lang.Object value)
          Updates value of specified key
 

Methods in org.midao.jdbc.core.handlers.model that return types with arguments of type QueryParameters
 java.util.Iterator<QueryParameters> QueryParametersLazyList.iterator()
          Returns iterator of this lazy query output list implementation.
 java.util.ListIterator<QueryParameters> QueryParametersLazyList.listIterator()
          Currently usage is not allowed.
 java.util.ListIterator<QueryParameters> QueryParametersLazyList.listIterator(int index)
          Currently usage is not allowed.
 java.util.List<QueryParameters> QueryParametersLazyList.subList(int fromIndex, int toIndex)
          Execution is currently not allowed, as it might result in caching whole query output which would lead to huge memory usage and/or crash.
 java.util.List<QueryParameters> QueryParametersLazyList.subListCached(int fromIndex, int toIndex)
          Returns sublist of cached elements.
 

Methods in org.midao.jdbc.core.handlers.model with parameters of type QueryParameters
 void QueryParametersLazyList.add(int index, QueryParameters element)
          Currently usage is not allowed.
 boolean QueryParametersLazyList.add(QueryParameters queryParameters)
          Currently usage is not allowed.
 QueryParameters QueryParametersLazyList.set(int index, QueryParameters element)
          Sets value in cache.
 

Method parameters in org.midao.jdbc.core.handlers.model with type arguments of type QueryParameters
 boolean QueryParametersLazyList.addAll(java.util.Collection<? extends QueryParameters> c)
          Currently usage is not allowed.
 boolean QueryParametersLazyList.addAll(int index, java.util.Collection<? extends QueryParameters> c)
          Currently usage is not allowed.
 

Constructors in org.midao.jdbc.core.handlers.model with parameters of type QueryParameters
QueryParameters(QueryParameters parameters)
          Creates new QueryParameters instance and fills it with data from @parameters
 

Uses of QueryParameters in org.midao.jdbc.core.handlers.output
 

Methods in org.midao.jdbc.core.handlers.output with parameters of type QueryParameters
protected  K AbstractKeyedOutputHandler.createKey(QueryParameters params)
          Generates key for query output row
protected  java.util.Map<java.lang.String,java.lang.Object> KeyedOutputHandler.createRow(QueryParameters params)
           
protected  V BeanMapOutputHandler.createRow(QueryParameters params)
          Converts query output into Map of Beans.
protected abstract  V AbstractKeyedOutputHandler.createRow(QueryParameters params)
          Converts query output row into internal Java type
 

Method parameters in org.midao.jdbc.core.handlers.output with type arguments of type QueryParameters
 T ScalarOutputHandler.handle(java.util.List<QueryParameters> output)
          Reads specified column of first row of Query output
 T RowCountOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Returns amount of records updated (value is calculated by JDBC Driver)
 T OutputHandler.handle(java.util.List<QueryParameters> outputList)
          Reads query output and converts it into
 java.util.Map<java.lang.String,java.lang.Object> MapOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Converts first row of query output into Map
 java.util.List<java.util.Map<java.lang.String,java.lang.Object>> MapListOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Converts query output into List of Maps
 MapListLazyOutputHandler MapListLazyOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Reads query output and converts it into
 java.util.List<T> ColumnListOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Converts specified (via constructor) column into List
 T BeanOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Converts first row of query output into Bean
 java.util.List<T> BeanListOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Converts query output into list of beans
 BeanListLazyOutputHandler BeanListLazyOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Reads query output and converts it into
 java.lang.Object[] ArrayOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Converts first row of query output into object array
 java.util.List<java.lang.Object[]> ArrayListOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Converts query output into list of object array
 java.util.Map<K,V> AbstractKeyedOutputHandler.handle(java.util.List<QueryParameters> outputList)
          Reads query result and converts it into Map of Bean/Map Values from column, index/name of which was specified via Constructor, would be used as key
 

Uses of QueryParameters in org.midao.jdbc.core.handlers.type
 

Methods in org.midao.jdbc.core.handlers.type that return QueryParameters
 QueryParameters UniversalTypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters TypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters OracleTypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters EmptyTypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters BaseTypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters TypeHandler.processOutput(java.sql.Statement stmt, QueryParameters params)
          Processes QueryParameters returned after Statement execution and converts any JDBC SQL Type into Java Type
 QueryParameters OracleTypeHandler.processOutput(java.sql.Statement stmt, QueryParameters params)
          Processes QueryParameters returned after Statement execution and converts any JDBC SQL Type into Java Type
 QueryParameters EmptyTypeHandler.processOutput(java.sql.Statement stmt, QueryParameters params)
          Processes QueryParameters returned after Statement execution and converts any JDBC SQL Type into Java Type
 QueryParameters BaseTypeHandler.processOutput(java.sql.Statement stmt, QueryParameters params)
          Processes QueryParameters returned after Statement execution and converts any JDBC SQL Type into Java Type
 

Methods in org.midao.jdbc.core.handlers.type that return types with arguments of type QueryParameters
 java.util.List<QueryParameters> TypeHandler.processOutput(java.sql.Statement stmt, java.util.List<QueryParameters> paramsList)
          Works the same as TypeHandler.processInput(java.sql.Statement, org.midao.jdbc.core.handlers.model.QueryParameters) Allows processing of the List
 java.util.List<QueryParameters> OracleTypeHandler.processOutput(java.sql.Statement stmt, java.util.List<QueryParameters> paramsList)
          Works the same as TypeHandler.processInput(java.sql.Statement, org.midao.jdbc.core.handlers.model.QueryParameters) Allows processing of the List
 java.util.List<QueryParameters> EmptyTypeHandler.processOutput(java.sql.Statement stmt, java.util.List<QueryParameters> paramsList)
          Works the same as TypeHandler.processInput(java.sql.Statement, org.midao.jdbc.core.handlers.model.QueryParameters) Allows processing of the List
 java.util.List<QueryParameters> BaseTypeHandler.processOutput(java.sql.Statement stmt, java.util.List<QueryParameters> paramsList)
          Works the same as TypeHandler.processInput(java.sql.Statement, org.midao.jdbc.core.handlers.model.QueryParameters) Allows processing of the List
 

Methods in org.midao.jdbc.core.handlers.type with parameters of type QueryParameters
 void UniversalTypeHandler.afterExecute(java.sql.Statement stmt, QueryParameters processedInput, QueryParameters params)
          Reads @processedInput and closes all JDBC SQL Type to prevent any memory leaks.
 void TypeHandler.afterExecute(java.sql.Statement stmt, QueryParameters processedInput, QueryParameters params)
          Reads @processedInput and closes all JDBC SQL Type to prevent any memory leaks.
 void OracleTypeHandler.afterExecute(java.sql.Statement stmt, QueryParameters processedInput, QueryParameters params)
          Reads @processedInput and closes all JDBC SQL Type to prevent any memory leaks.
 void EmptyTypeHandler.afterExecute(java.sql.Statement stmt, QueryParameters processedInput, QueryParameters params)
          Reads @processedInput and closes all JDBC SQL Type to prevent any memory leaks.
 void BaseTypeHandler.afterExecute(java.sql.Statement stmt, QueryParameters processedInput, QueryParameters params)
          Reads @processedInput and closes all JDBC SQL Type to prevent any memory leaks.
 QueryParameters UniversalTypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters TypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters OracleTypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters EmptyTypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters BaseTypeHandler.processInput(java.sql.Statement stmt, QueryParameters params)
          Reads @params and creates new QueryParameters with converted Java types into JDBC SQL Types
 QueryParameters TypeHandler.processOutput(java.sql.Statement stmt, QueryParameters params)
          Processes QueryParameters returned after Statement execution and converts any JDBC SQL Type into Java Type
 QueryParameters OracleTypeHandler.processOutput(java.sql.Statement stmt, QueryParameters params)
          Processes QueryParameters returned after Statement execution and converts any JDBC SQL Type into Java Type
 QueryParameters EmptyTypeHandler.processOutput(java.sql.Statement stmt, QueryParameters params)
          Processes QueryParameters returned after Statement execution and converts any JDBC SQL Type into Java Type
 QueryParameters BaseTypeHandler.processOutput(java.sql.Statement stmt, QueryParameters params)
          Processes QueryParameters returned after Statement execution and converts any JDBC SQL Type into Java Type
 

Method parameters in org.midao.jdbc.core.handlers.type with type arguments of type QueryParameters
 java.util.List<QueryParameters> TypeHandler.processOutput(java.sql.Statement stmt, java.util.List<QueryParameters> paramsList)
          Works the same as TypeHandler.processInput(java.sql.Statement, org.midao.jdbc.core.handlers.model.QueryParameters) Allows processing of the List
 java.util.List<QueryParameters> OracleTypeHandler.processOutput(java.sql.Statement stmt, java.util.List<QueryParameters> paramsList)
          Works the same as TypeHandler.processInput(java.sql.Statement, org.midao.jdbc.core.handlers.model.QueryParameters) Allows processing of the List
 java.util.List<QueryParameters> EmptyTypeHandler.processOutput(java.sql.Statement stmt, java.util.List<QueryParameters> paramsList)
          Works the same as TypeHandler.processInput(java.sql.Statement, org.midao.jdbc.core.handlers.model.QueryParameters) Allows processing of the List
 java.util.List<QueryParameters> BaseTypeHandler.processOutput(java.sql.Statement stmt, java.util.List<QueryParameters> paramsList)
          Works the same as TypeHandler.processInput(java.sql.Statement, org.midao.jdbc.core.handlers.model.QueryParameters) Allows processing of the List
 

Uses of QueryParameters in org.midao.jdbc.core.handlers.utils
 

Methods in org.midao.jdbc.core.handlers.utils that return QueryParameters
static QueryParameters CallableUtils.updateDirections(QueryParameters original, QueryParameters source)
          Clones @original and updates it's direction - taken from @source.
static QueryParameters CallableUtils.updateDirectionsByName(QueryParameters original, QueryParameters source)
          Same as @updateDirections but updates based not on position but on key
static QueryParameters CallableUtils.updateTypes(QueryParameters original, QueryParameters source)
          Clones @original and updates it's types - taken from @source.
static QueryParameters CallableUtils.updateTypesByName(QueryParameters original, QueryParameters source)
          Same as @updateTypes but updates based not on position but on key
 

Methods in org.midao.jdbc.core.handlers.utils that return types with arguments of type QueryParameters
static java.util.List<QueryParameters> MappingUtils.convertResultSet(java.sql.ResultSet rs)
          Converts java.sql.ResultSet into List of QueryParameters.
 

Methods in org.midao.jdbc.core.handlers.utils with parameters of type QueryParameters
static void InputUtils.defineOrder(ProcessedInput processedInput, QueryParameters parameters)
          Defines order of @parameters based on @processedInput
static QueryParameters CallableUtils.updateDirections(QueryParameters original, QueryParameters source)
          Clones @original and updates it's direction - taken from @source.
static QueryParameters CallableUtils.updateDirectionsByName(QueryParameters original, QueryParameters source)
          Same as @updateDirections but updates based not on position but on key
static QueryParameters CallableUtils.updateTypes(QueryParameters original, QueryParameters source)
          Clones @original and updates it's types - taken from @source.
static QueryParameters CallableUtils.updateTypesByName(QueryParameters original, QueryParameters source)
          Same as @updateTypes but updates based not on position but on key
 

Uses of QueryParameters in org.midao.jdbc.core.metadata
 

Methods in org.midao.jdbc.core.metadata that return QueryParameters
 QueryParameters MetadataHandler.getProcedureParameters(java.sql.Connection conn, java.lang.String catalogName, java.lang.String schemaName, java.lang.String procedureName, boolean useCache)
          Returns Stored Procedure/Function parameters
 QueryParameters BaseMetadataHandler.getProcedureParameters(java.sql.Connection conn, java.lang.String catalogName, java.lang.String schemaName, java.lang.String procedureName, boolean useCache)
          Returns Stored Procedure/Function parameters
 

Uses of QueryParameters in org.midao.jdbc.core.processor
 

Methods in org.midao.jdbc.core.processor with parameters of type QueryParameters
protected  int[] BasicQueryOutputProcessor.mapColumnsToProperties(QueryParameters params, java.beans.PropertyDescriptor[] props)
          Columns from @params are mapped to class fields @props (by name).
 java.lang.Object QueryOutputProcessor.processValue(QueryParameters params, java.lang.Integer position, java.beans.PropertyDescriptor prop)
          Reads value from @params (by @position) and converts it into value according to type specified in @prop This function is not used outside OutputProcessor.
 java.lang.Object BasicQueryOutputProcessor.processValue(QueryParameters params, java.lang.Integer position, java.beans.PropertyDescriptor prop)
          Reads value from @params (by @position) and converts it into value according to type specified in @prop This function is not used outside OutputProcessor.
<T> T
QueryOutputProcessor.toBean(QueryParameters params, java.lang.Class<T> type)
          Converts query parameters into Java Object.
<T> T
BasicQueryOutputProcessor.toBean(QueryParameters params, java.lang.Class<T> type)
          Converts query parameters into Java Object.
 java.util.Map<java.lang.String,java.lang.Object> QueryOutputProcessor.toMap(QueryParameters params)
          Converts query parameters into Map.
 java.util.Map<java.lang.String,java.lang.Object> BasicQueryOutputProcessor.toMap(QueryParameters params)
          Converts query parameters into Map.
 

Method parameters in org.midao.jdbc.core.processor with type arguments of type QueryParameters
 java.lang.Object[] QueryOutputProcessor.toArray(java.util.List<QueryParameters> paramsList)
          Converts query output (first line) into array of values
 java.lang.Object[] BasicQueryOutputProcessor.toArray(java.util.List<QueryParameters> paramsList)
          Converts query output (first line) into array of values
 java.util.List<java.lang.Object[]> QueryOutputProcessor.toArrayList(java.util.List<QueryParameters> paramsList)
          Converts query output into list.
 java.util.List<java.lang.Object[]> BasicQueryOutputProcessor.toArrayList(java.util.List<QueryParameters> paramsList)
          Converts query output into list.
<T> T
QueryOutputProcessor.toBean(java.util.List<QueryParameters> paramsList, java.lang.Class<T> type)
          Converts query output(first line) into Java Object.
<T> T
BasicQueryOutputProcessor.toBean(java.util.List<QueryParameters> paramsList, java.lang.Class<T> type)
          Converts query output(first line) into Java Object.
<T> java.util.List<T>
QueryOutputProcessor.toBeanList(java.util.List<QueryParameters> paramsList, java.lang.Class<T> type)
          Converts query output into Java Object.
<T> java.util.List<T>
BasicQueryOutputProcessor.toBeanList(java.util.List<QueryParameters> paramsList, java.lang.Class<T> type)
          Converts query output into Java Object.
 java.util.Map<java.lang.String,java.lang.Object> QueryOutputProcessor.toMap(java.util.List<QueryParameters> paramsList)
          Converts query output(first line) into Map.
 java.util.Map<java.lang.String,java.lang.Object> BasicQueryOutputProcessor.toMap(java.util.List<QueryParameters> paramsList)
          Converts query output(first line) into Map.
 java.util.List<java.util.Map<java.lang.String,java.lang.Object>> QueryOutputProcessor.toMapList(java.util.List<QueryParameters> paramsList)
          Converts query output into Map.
 java.util.List<java.util.Map<java.lang.String,java.lang.Object>> BasicQueryOutputProcessor.toMapList(java.util.List<QueryParameters> paramsList)
          Converts query output into Map.
 

Uses of QueryParameters in org.midao.jdbc.core.service
 

Methods in org.midao.jdbc.core.service that return QueryParameters
 QueryParameters QueryRunnerService.call(AbstractQueryInputHandler inputHandler)
          Executes the given CALL SQL statement.
 

Methods in org.midao.jdbc.core.service that return types with arguments of type QueryParameters
 java.util.concurrent.Future<QueryParameters> AsyncQueryRunnerService.call(AbstractQueryInputHandler inputHandler)
           
 

Uses of QueryParameters in org.midao.jdbc.core.statement
 

Methods in org.midao.jdbc.core.statement that return types with arguments of type QueryParameters
 java.util.List<QueryParameters> StatementHandler.wrap(java.sql.Statement stmt)
          Reads all Statement output - Generated Keys, Result sets and wraps them into List.
 java.util.List<QueryParameters> LazyStatementHandler.wrap(java.sql.Statement stmt)
          Reads all Statement output - Generated Keys, Result sets and wraps them into List.
 java.util.List<QueryParameters> BaseStatementHandler.wrap(java.sql.Statement stmt)
          Reads all Statement output - Generated Keys, Result sets and wraps them into List.
 

Methods in org.midao.jdbc.core.statement with parameters of type QueryParameters
 java.lang.Object[] StatementHandler.readStatement(java.sql.Statement statement, QueryParameters params)
          The purpose of this function is to read all OUT/INOUT parameters from Statement and return them as Array.
 java.lang.Object[] CallableStatementHandler.readStatement(java.sql.Statement statement, QueryParameters params)
          The purpose of this function is to read all OUT/INOUT parameters from Statement and return them as Array.
 java.lang.Object[] BaseStatementHandler.readStatement(java.sql.Statement statement, QueryParameters params)
          The purpose of this function is to read all OUT/INOUT parameters from Statement and return them as Array.
 void StatementHandler.setStatement(java.sql.Statement statement, QueryParameters params)
          Sets Query input Parameters into @statement Invoked only when @statement is instance of PreparedStatement or CallableStatement
 void LazyStatementHandler.setStatement(java.sql.Statement statement, QueryParameters params)
          Sets Query input Parameters into @statement Invoked only when @statement is instance of PreparedStatement or CallableStatement
 void CallableStatementHandler.setStatement(java.sql.Statement statement, QueryParameters params)
          Sets Query input Parameters into @statement Invoked only when @statement is instance of PreparedStatement or CallableStatement
 void BaseStatementHandler.setStatement(java.sql.Statement statement, QueryParameters params)
          Sets Query input Parameters into @statement Invoked only when @statement is instance of PreparedStatement or CallableStatement
 



Copyright © 2013. All Rights Reserved.