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 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 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 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 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.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.
<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, int firstResult, int 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, int firstResult, int 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, int maxTimeout, int maxResults, int 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, int maxTimeout, int maxResults, int 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> 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, int 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(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.
(package private)  void SqlMappingItem.setQueryResultData(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.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.setQueryResultMapping(Class<?> resultClass, Map<String,Class<?>> moreResultClasses, SqlQuery query)
          Declares a scalar query result for this mapping rule item.
 void SqlMappingResult.setQueryResultMapping(Class<?> resultClass, Map<String,Class<?>> moreResultClasses, SqlQuery query)
          Declares a scalar query results for all mapping rule items.
(package private)  void SqlType.setResult(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(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void JdbcOtherType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void JdbcOracleCursorType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void JdbcDefaultType.setResult(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(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(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 SqlLongType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlBigIntegerType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlTimestampType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlShortType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlOutValueType.setParameter(SqlQuery query, String paramName, Object outValueSetter, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlEnumStringType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlClobType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
abstract  void SqlMetaType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlBigDecimalType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlFromDateType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlByteArrayType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlIntegerType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlTimeType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlIdentityType.setParameter(SqlQuery query, String paramName, Object identitySetter, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlEnumIntegerType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlBlobType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlDoubleType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlToDateType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlDateTimeType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlByteType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlTextType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlBooleanType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlStringType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlDateType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlCharType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlFloatType.setParameter(SqlQuery query, String paramName, Object inputValue, Class<?> inputType, boolean ingoreError)
          Binds an input value to a named query parameter.
 void SqlLongType.setResult(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(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(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(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(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(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(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(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(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(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(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(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(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(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(Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 void SqlDoubleType.setResult(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(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(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(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(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(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(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(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(Object resultInstance, String attributeName, Object resultValue, boolean ingoreError)
          Initializes the attribute of the result class with output value from the SQL query execution.
 



Copyright © 2013. All Rights Reserved.