Uses of Class
org.sqlproc.engine.SqlRuntimeException
-
Packages that use SqlRuntimeException Package Description 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.plugin The plugins are used to alter the behavior of the SQL Processor.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 Modifier and Type Method Description 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.Object
SqlRuntimeContext. getAttribute(Object bean, String attrName)
Returns the value of the specified simple attribute of the specified bean.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
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, 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, 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
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. 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.Object
SqlRuntimeContext. invokeMethod(Class<?> clazz, String methodName, Object... args)
Invokes the class method with the specified name and parameters.Object
SqlRuntimeContext. invokeMethod(Object bean, String methodName, Object... args)
Invokes the bean method with the specified name and parameters.boolean
SqlQuery.SqlQueryRowProcessor. processRow(Map<String,Object> resultRow, int rownum)
This method will be called once for database row.boolean
SqlRowProcessor. processRow(E result, 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 usingSqlRowProcessor
.<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.void
SqlRuntimeContext. setAttribute(Object bean, String attrName, Object attrValue)
Sets the value of the specified simple attribute of the specified bean.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 Modifier and Type Method Description (package private) Object
SqlType. getResult(SqlProcessContext ctx, String attributeName, Object resultValue)
Returns the attribute's result value (with possible conversion).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<?>... inputTypes)
Bind an input value to a named query parameter.(package private) void
SqlInputValue. setQueryParam(SqlTypeFactory typeFactory, SqlSession session, SqlQuery query, String paramName)
Bind a dynamic input value to a named query parameter.boolean
SqlProcessResult. setQueryParams(SqlSession session, SqlQuery query)
Bind an input values to a named query parameters.(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. 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(SqlProcessContext ctx, 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(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 Modifier and Type Method Description void
JdbcOracleCursorType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
JdbcOtherType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.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.plugin
Methods in org.sqlproc.engine.plugin that throw SqlRuntimeException Modifier and Type Method Description Object
BeanUtilsPlugin. getAttribute(SqlRuntimeContext runtimeCtx, Object bean, String attrName)
Returns the value of the specified simple attribute of the specified bean.Object
DefaultBeanUtilsPlugin. getAttribute(SqlRuntimeContext runtimeCtx, Object bean, String attrName)
Returns the value of the specified simple attribute of the specified bean.Object
BeanUtilsPlugin. invokeMethod(SqlRuntimeContext runtimeCtx, Class<?> clazz, String methodName, Object... args)
Invokes the class method with the specified name and parameters.Object
BeanUtilsPlugin. invokeMethod(SqlRuntimeContext runtimeCtx, Object bean, String methodName, Object... args)
Invokes the bean method with the specified name and parameters.protected Object
DefaultBeanUtilsPlugin. invokeMethod(SqlRuntimeContext runtimeCtx, Class<?> clazz, Object bean, String methodName, Object... args)
Object
DefaultBeanUtilsPlugin. invokeMethod(SqlRuntimeContext runtimeCtx, Class<?> clazz, String methodName, Object... args)
Invokes the class method with the specified name and parameters.Object
DefaultBeanUtilsPlugin. invokeMethod(SqlRuntimeContext runtimeCtx, Object bean, String methodName, Object... args)
Invokes the bean method with the specified name and parameters.void
BeanUtilsPlugin. setAttribute(SqlRuntimeContext runtimeCtx, Object bean, String attrName, Object attrValue)
Sets the value of the specified simple attribute of the specified bean.void
DefaultBeanUtilsPlugin. setAttribute(SqlRuntimeContext runtimeCtx, Object bean, String attrName, Object attrValue)
Sets the value of the specified simple attribute of the specified bean. -
Uses of SqlRuntimeException in org.sqlproc.engine.type
Methods in org.sqlproc.engine.type that throw SqlRuntimeException Modifier and Type Method Description Object
SqlInstantType. getResult(SqlRuntimeContext runtimeCtx, String attributeName, Object resultValue, boolean ingoreError)
Returns the attribute's result value (with possible conversion).Object
SqlLocalDateTimeType. getResult(SqlRuntimeContext runtimeCtx, String attributeName, Object resultValue, boolean ingoreError)
Returns the attribute's result value (with possible conversion).Object
SqlLocalDateType. getResult(SqlRuntimeContext runtimeCtx, String attributeName, Object resultValue, boolean ingoreError)
Returns the attribute's result value (with possible conversion).Object
SqlLocalTimeType. getResult(SqlRuntimeContext runtimeCtx, String attributeName, Object resultValue, boolean ingoreError)
Returns the attribute's result value (with possible conversion).default Object
SqlMetaType. getResult(SqlRuntimeContext runtimeCtx, String attributeName, Object resultValue, boolean ingoreError)
Returns the attribute's result value (with possible conversion).void
SqlByteArrayType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlDateTimeType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlDateType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlDefaultType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlEnumIntegerType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlEnumStringType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlFromDateType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlIdentityType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object identitySetter, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlInstantType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlLocalDateTimeType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlLocalDateType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlLocalTimeType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlMetaType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlOutValueType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object outValueSetter, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlTimestampType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlTimeType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.void
SqlToDateType. setParameter(SqlRuntimeContext runtimeCtx, SqlQuery query, String paramName, Object inputValue, boolean ingoreError, Class<?>... inputTypes)
Binds an input value to a named query parameter.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
SqlDefaultType. 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
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
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.void
SqlInstantType. 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
SqlLocalDateTimeType. 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
SqlLocalDateType. 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
SqlLocalTimeType. 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
SqlMetaType. 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.
-