Uses of Class
org.sqlproc.engine.SqlRuntimeException

Packages that use SqlRuntimeException
org.sqlproc.engine The public part of the SQL Processor implementation. 
org.sqlproc.engine.impl The private part of the SQL Processor implementation. 
org.sqlproc.engine.jdbc.type All the META types staff for the JDBC stack devoted to special handling of input/output values. 
org.sqlproc.engine.type All the META types staff devoted to special handling of input/output values. 
 

Uses of SqlRuntimeException in org.sqlproc.engine
 

Methods in org.sqlproc.engine that throw SqlRuntimeException
 Object SqlProcedureEngine.callFunction(SqlSession session, Object dynamicInputValues)
          Runs the stored function based on the META SQL statement.
 Object SqlProcedureEngine.callFunction(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout)
          Runs the stored function based on the META SQL statement.
 Object SqlProcedureEngine.callFunction(SqlSession session, Object dynamicInputValues, SqlControl sqlControl)
          Runs the stored function based on the META SQL statement.
<E> List<E>
SqlProcedureEngine.callQuery(SqlSession session, Class<E> resultClass, Object dynamicInputValues)
          Runs the stored procedure based on the META SQL statement to obtain a list of database rows.
<E> List<E>
SqlProcedureEngine.callQuery(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, int maxTimeout)
          Runs the stored procedure based on the META SQL statement to obtain a list of database rows.
<E> List<E>
SqlProcedureEngine.callQuery(SqlSession session, Class<E> resultClass, Object dynamicInputValues, SqlControl sqlControl)
          Runs the stored procedure based on the META SQL statement to obtain a list of database rows.
 int SqlProcedureEngine.callUpdate(SqlSession session, Object dynamicInputValues)
          Runs the stored procedure based on the META SQL statement.
 int SqlProcedureEngine.callUpdate(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout)
          Runs the stored procedure based on the META SQL statement.
 int SqlProcedureEngine.callUpdate(SqlSession session, Object dynamicInputValues, SqlControl sqlControl)
          Runs the stored procedure based on the META SQL statement.
 int SqlCrudEngine.delete(SqlSession session, Object dynamicInputValues)
          Runs the META SQL delete statement to delete a database row.
 int SqlCrudEngine.delete(SqlSession session, Object dynamicInputValues, Object staticInputValues)
          Runs the META SQL delete statement to delete a database row.
 int SqlCrudEngine.delete(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout)
          Runs the META SQL delete statement to delete a database row.
 int SqlCrudEngine.delete(SqlSession session, Object dynamicInputValues, SqlControl sqlControl)
          Runs the META SQL delete statement to delete a database row.
<E> E
SqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues)
          Runs the META SQL query to obtain a unique database row.
<E> E
SqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues)
          Runs the META SQL query to obtain a unique database row.
<E> E
SqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, int maxTimeout)
          Runs the META SQL query to obtain a unique database row.
<E> E
SqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, int maxTimeout, Map<String,Class<?>> moreResultClasses)
          Runs the META SQL query to obtain a unique database row.
<E> E
SqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, Map<String,Class<?>> moreResultClasses)
          Runs the META SQL query to obtain a unique database row.
<E> E
SqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues, SqlControl sqlControl)
          Runs the META SQL query to obtain a unique database row.
 String SqlProcedureEngine.getCallSql(Object dynamicInputValues, Object staticInputValues)
          Returns the call statement derived from the META SQL statement.
 String SqlCrudEngine.getDeleteSql(Object dynamicInputValues, Object staticInputValues)
          Returns the delete statement derived from the META SQL statement.
 String SqlCrudEngine.getGetSql(Object dynamicInputValues, Object staticInputValues)
          Returns the query select statement derived from the META SQL statement.
 String SqlCrudEngine.getInsertSql(Object dynamicInputValues, Object staticInputValues)
          Returns the insert statement derived from the META SQL statement.
 String SqlCrudEngine.getSql(Object dynamicInputValues, Object staticInputValues, SqlMetaStatement.Type statementType)
          Because SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL statement command.
 String SqlProcedureEngine.getSql(Object dynamicInputValues, Object staticInputValues, SqlMetaStatement.Type statementType)
          Because SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL statement command.
 String SqlQueryEngine.getSql(Object dynamicInputValues, Object staticInputValues, SqlOrder order)
          Because the SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL query command.
 String SqlQueryEngine.getSql(Object dynamicInputValues, SqlControl sqlControl)
          Because the SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL query command.
 String SqlCrudEngine.getSql(Object dynamicInputValues, SqlControl sqlControl, SqlMetaStatement.Type statementType)
          Because SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL statement command.
 String SqlProcedureEngine.getSql(Object dynamicInputValues, SqlControl sqlControl, SqlMetaStatement.Type statementType)
          Because SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL statement command.
 String SqlCrudEngine.getUpdateSql(Object dynamicInputValues, Object staticInputValues)
          Returns the update statement derived from the META SQL statement.
 int SqlCrudEngine.insert(SqlSession session, Object dynamicInputValues)
          Runs the META SQL insert statement to persist a database row.
 int SqlCrudEngine.insert(SqlSession session, Object dynamicInputValues, Object staticInputValues)
          Runs the META SQL insert statement to persist a database row.
 int SqlCrudEngine.insert(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout)
          Runs the META SQL insert statement to persist a database row.
 int SqlCrudEngine.insert(SqlSession session, Object dynamicInputValues, SqlControl sqlControl)
          Runs the META SQL insert statement to persist a database row.
 boolean SqlRowProcessor.processRow(E result, int rownum)
          This method will be called once for database row.
 boolean SqlQuery.SqlQueryRowProcessor.processRow(Object resultRow, int rownum)
          This method will be called once for database row.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Integer firstResult, Integer maxResults)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, Integer firstResult, Integer maxResults)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, Map<String,Class<?>> moreResultClasses)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, SqlOrder order)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, SqlOrder order, Integer maxTimeout, Integer maxResults, Integer firstResult)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, SqlOrder order, Integer maxTimeout, Integer maxResults, Integer firstResult, Map<String,Class<?>> moreResultClasses)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, SqlOrder order, Map<String,Class<?>> moreResultClasses)
          Runs the META SQL query to obtain a list of database rows.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, SqlControl sqlControl)
          Runs the META SQL query to obtain a list of database rows.
<E> Integer
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, SqlControl sqlControl, SqlRowProcessor<E> sqlRowProcessor)
          Runs the META SQL query to process the query output using SqlRowProcessor.
<E> List<E>
SqlQueryEngine.query(SqlSession session, Class<E> resultClass, Object dynamicInputValues, SqlOrder order)
          Runs the META SQL query to obtain a list of database rows.
 int SqlQueryEngine.queryCount(SqlSession session)
          Runs the META SQL query to obtain the number of database rows.
 int SqlQueryEngine.queryCount(SqlSession session, Object dynamicInputValues)
          Runs the META SQL query to obtain the number of database rows.
 int SqlQueryEngine.queryCount(SqlSession session, Object dynamicInputValues, Object staticInputValues)
          Runs the META SQL query to obtain the number of database rows.
 int SqlQueryEngine.queryCount(SqlSession session, Object dynamicInputValues, Object staticInputValues, SqlOrder order, Integer maxTimeout)
          Runs META SQL query to obtain the number of database rows.
 int SqlQueryEngine.queryCount(SqlSession session, Object dynamicInputValues, SqlControl sqlControl)
          Runs META SQL query to obtain the number of database rows.
 int SqlCrudEngine.update(SqlSession session, Object dynamicInputValues)
          Runs the META SQL update statement to persist a database row.
 int SqlCrudEngine.update(SqlSession session, Object dynamicInputValues, Object staticInputValues)
          Runs the META SQL update statement to persist a database row.
 int SqlCrudEngine.update(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout)
          Runs the META SQL update statement to persist a database row.
 int SqlCrudEngine.update(SqlSession session, Object dynamicInputValues, SqlControl sqlControl)
          Runs the META SQL update statement to persist a database row.
 

Uses of SqlRuntimeException in org.sqlproc.engine.impl
 

Methods in org.sqlproc.engine.impl that throw SqlRuntimeException
 void SqlProcessResult.postProcess()
          Post processing, like identities setting into a result class.
(package private)  void SqlInputValue.setIdentityResult(String paramName)
          Sets the generated identity value to an input value attribute.
(package private)  void SqlInputValue.setOutValueResult(String paramName)
          Sets the OUT/INOUT value to an input value attribute.
(package private)  void SqlType.setParameter(SqlProcessContext ctx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType)
          Bind an input value to a named query parameter.
(package private)  void SqlInputValue.setQueryParam(SqlSession session, SqlQuery query, String paramName)
          Bind a dynamic input value to a named query parameter.
 void SqlProcessResult.setQueryParams(SqlSession session, SqlQuery query)
          Bind an input values to a named query parameters.
 void SqlMappingResult.setQueryResultData(Object resultInstance, Object[] resultValues, Map<String,Object> ids, Map<String,Class<?>> moreResultClasses)
          Fills the instance of the result class with output values from the SQL query execution.
(package private)  void SqlMappingItem.setQueryResultData(SqlProcessContext ctx, Object resultInstance, int resultIndex, Object[] resultValues, Map<String,Object> ids, Map<String,Object> idsProcessed, Map<String,SqlMappingIdentity> identities, Map<String,Class<?>> moreResultClasses)
          Initializes the attribute of the result class with the output value from the SQL query execution.
 void SqlMappingResult.setQueryResultMapping(Class<?> resultClass, Map<String,Class<?>> moreResultClasses, SqlQuery query)
          Declares a scalar query results for all mapping rule items.
(package private)  void SqlMappingItem.setQueryResultMapping(SqlProcessContext ctx, Class<?> resultClass, Map<String,Class<?>> moreResultClasses, SqlQuery query)
          Declares a scalar query result for this mapping rule item.
(package private)  void SqlType.setResult(SqlProcessContext ctx, Object resultInstance, String attributeName, Object resultValue)
          Initializes the attribute of the result class with output values from SQL query execution.
 

Uses of SqlRuntimeException in org.sqlproc.engine.jdbc.type
 

Methods in org.sqlproc.engine.jdbc.type that throw SqlRuntimeException
 void JdbcDefaultType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void JdbcOracleCursorType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void JdbcOtherType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void JdbcDefaultType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void JdbcOracleCursorType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void JdbcOtherType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 

Uses of SqlRuntimeException in org.sqlproc.engine.type
 

Methods in org.sqlproc.engine.type that throw SqlRuntimeException
 void SqlDoubleType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlShortType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlBigDecimalType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlDateTimeType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlDateType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlBooleanType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlBigIntegerType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlTextType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlTimeType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlStringType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlFloatType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlByteType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlByteArrayType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlClobType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlEnumIntegerType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlCharType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlOutValueType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object outValueSetter, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
abstract  void SqlMetaType.setParameter(SqlRuntimeContext runtimeCtxCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlToDateType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlIntegerType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlLongType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlTimestampType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlEnumStringType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlFromDateType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlBlobType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlIdentityType.setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object identitySetter, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlDoubleType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlShortType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlBigDecimalType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlDateTimeType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlDateType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlBooleanType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlBigIntegerType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlTextType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlTimeType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlStringType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlFloatType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlByteType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlByteArrayType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlClobType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlEnumIntegerType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlCharType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlOutValueType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
abstract  void SqlMetaType.setResult(SqlRuntimeContext runtimeCtxCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlIntegerType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlLongType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlTimestampType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlEnumStringType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlBlobType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlIdentityType.setResult(SqlRuntimeContext runtimeCtx, Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 



Copyright © 2015. All rights reserved.