Uses of Class
org.sqlproc.engine.SqlProcessorException
Packages that use SqlProcessorException
Package
Description
The public part of the SQL Processor implementation.
The adapters and proxies for the JDBC stack.
-
Uses of SqlProcessorException in org.sqlproc.engine
Methods in org.sqlproc.engine that throw SqlProcessorExceptionModifier and TypeMethodDescriptionSqlProcedureEngine.callFunction(SqlSession session, Object dynamicInputValues) Runs the stored function based on the META SQL statement.SqlProcedureEngine.callFunction(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout) Runs the stored function based on the META SQL statement.SqlProcedureEngine.callFunction(SqlSession session, Object dynamicInputValues, SqlControl sqlControl) Runs the stored function based on the META SQL statement.SqlQuery.callFunction()Executes the statements in the stored function, which return value of any type but the result set.SqlQuery.callList(SqlRuntimeContext runtime) Returns the stored procedure execution results as aList.<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.SqlQuery.callUnique(SqlRuntimeContext runtime) Convenience method to return a single instance that matches the stored procedure execution, or null if the stored procedure execution returns no results.intSqlProcedureEngine.callUpdate(SqlSession session, Object dynamicInputValues) Runs the stored procedure based on the META SQL statement.intSqlProcedureEngine.callUpdate(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout) Runs the stored procedure based on the META SQL statement.intSqlProcedureEngine.callUpdate(SqlSession session, Object dynamicInputValues, SqlControl sqlControl) Runs the stored procedure based on the META SQL statement.intSqlQuery.callUpdate(SqlRuntimeContext runtime) Executes the update, delete, insert statement or other statements in the stored procedure, which don't return the result set.SqlSession.createSqlQuery(String queryString) Creates a new instance ofSqlQuery, which is a wrapper around the SQL query command.intSqlCrudEngine.delete(SqlSession session, Object dynamicInputValues) Runs the META SQL delete statement to delete a database row.intSqlCrudEngine.delete(SqlSession session, Object dynamicInputValues, Object staticInputValues) Runs the META SQL delete statement to delete a database row.intSqlCrudEngine.delete(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout) Runs the META SQL delete statement to delete a database row.intSqlCrudEngine.delete(SqlSession session, Object dynamicInputValues, SqlControl sqlControl) Runs the META SQL delete statement to delete a database row.int[]SqlQuery.executeBatch(String[] statements) Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.int[]SqlSession.executeBatch(String... statements) Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.<E> ESqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues) Runs the META SQL query to obtain a unique database row.<E> ESqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues) Runs the META SQL query to obtain a unique database row.<E> ESqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues, Object staticInputValues, int maxTimeout) Runs the META SQL query to obtain a unique database row.<E> ESqlCrudEngine.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> ESqlCrudEngine.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> ESqlCrudEngine.get(SqlSession session, Class<E> resultClass, Object dynamicInputValues, SqlControl sqlControl) Runs the META SQL query to obtain a unique database row.SqlProcedureEngine.getCallSql(Object dynamicInputValues, Object staticInputValues) Returns the call statement derived from the META SQL statement.SqlCrudEngine.getDeleteSql(Object dynamicInputValues, Object staticInputValues) Returns the delete statement derived from the META SQL statement.Returns the query select statement derived from the META SQL statement.SqlCrudEngine.getInsertSql(Object dynamicInputValues, Object staticInputValues) Returns the insert statement derived from the META SQL statement.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.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.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.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.Because the SQL Processor is Data Driven Query engine, every input parameters can produce in fact different SQL query command.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.SqlCrudEngine.getUpdateSql(Object dynamicInputValues, Object staticInputValues) Returns the update statement derived from the META SQL statement.intSqlCrudEngine.insert(SqlSession session, Object dynamicInputValues) Runs the META SQL insert statement to persist a database row.intSqlCrudEngine.insert(SqlSession session, Object dynamicInputValues, Object staticInputValues) Runs the META SQL insert statement to persist a database row.intSqlCrudEngine.insert(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout) Runs the META SQL insert statement to persist a database row.intSqlCrudEngine.insert(SqlSession session, Object dynamicInputValues, SqlControl sqlControl) Runs the META SQL insert statement to persist a database row.SqlQuery.list(SqlRuntimeContext runtime) Returns the query results as aList.intSqlQuery.query(SqlRuntimeContext runtime, SqlQuery.SqlQueryRowProcessor sqlQueryRowProcessor) Process the query output using theSqlQuery.SqlQueryRowProcessor.<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> IntegerSqlQueryEngine.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.intSqlQueryEngine.queryCount(SqlSession session) Runs the META SQL query to obtain the number of database rows.intSqlQueryEngine.queryCount(SqlSession session, Object dynamicInputValues) Runs the META SQL query to obtain the number of database rows.intSqlQueryEngine.queryCount(SqlSession session, Object dynamicInputValues, Object staticInputValues) Runs the META SQL query to obtain the number of database rows.intSqlQueryEngine.queryCount(SqlSession session, Object dynamicInputValues, Object staticInputValues, SqlOrder order, Integer maxTimeout) Runs META SQL query to obtain the number of database rows.intSqlQueryEngine.queryCount(SqlSession session, Object dynamicInputValues, SqlControl sqlControl) Runs META SQL query to obtain the number of database rows.SqlMonitor.Runner.run()The main contract, which is invoked from inside SQLMonitorSqlQuery.setParameter(String name, Object val) Binds a value to a named query parameter.SqlQuery.setParameter(String name, Object val, Object type, Class<?>... moreTypes) Binds a value to a named query parameter.SqlQuery.setParameterList(String name, Object[] vals) Binds multiple values to a named query parameter.SqlQuery.setParameterList(String name, Object[] vals, Object type, Class<?>... moreTypes) Binds multiple values to a named query parameter.SqlQuery.unique(SqlRuntimeContext runtime) Convenience method to return a single instance that matches the query, or null if the query returns no results.intSqlCrudEngine.update(SqlSession session, Object dynamicInputValues) Runs the META SQL update statement to persist a database row.intSqlCrudEngine.update(SqlSession session, Object dynamicInputValues, Object staticInputValues) Runs the META SQL update statement to persist a database row.intSqlCrudEngine.update(SqlSession session, Object dynamicInputValues, Object staticInputValues, int maxTimeout) Runs the META SQL update statement to persist a database row.intSqlCrudEngine.update(SqlSession session, Object dynamicInputValues, SqlControl sqlControl) Runs the META SQL update statement to persist a database row.intSqlQuery.update(SqlRuntimeContext runtime) Executes the update, delete or insert statement. -
Uses of SqlProcessorException in org.sqlproc.engine.jdbc
Methods in org.sqlproc.engine.jdbc that return SqlProcessorExceptionModifier and TypeMethodDescriptionprotected SqlProcessorExceptionJdbcQuery.newSqlProcessorException(SQLException ex, String query) Methods in org.sqlproc.engine.jdbc that throw SqlProcessorExceptionModifier and TypeMethodDescriptionJdbcQuery.callFunction()Executes the statements in the stored function, which return value of any type but the result set.JdbcQuery.callList(SqlRuntimeContext runtimeCtx) Returns the stored procedure execution results as aList.JdbcQuery.callUnique(SqlRuntimeContext runtimeCtx) Convenience method to return a single instance that matches the stored procedure execution, or null if the stored procedure execution returns no results.intJdbcQuery.callUpdate(SqlRuntimeContext runtimeCtx) Executes the update, delete, insert statement or other statements in the stored procedure, which don't return the result set.JdbcSimpleSession.createSqlQuery(String queryString) Creates a new instance ofSqlQuery, which is a wrapper around the SQL query command.int[]JdbcQuery.executeBatch(String[] statements) Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.int[]JdbcSimpleSession.executeBatch(String... statements) Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.JdbcQuery.list(SqlRuntimeContext runtimeCtx) Returns the query results as aList.intJdbcQuery.query(SqlRuntimeContext runtimeCtx, SqlQuery.SqlQueryRowProcessor sqlQueryRowProcessor) Process the query output using theSqlQuery.SqlQueryRowProcessor.JdbcQuery.setParameter(String name, Object val) Binds a value to a named query parameter.JdbcQuery.setParameter(String name, Object val, Object type, Class<?>... moreTypes) Binds a value to a named query parameter.JdbcQuery.setParameterList(String name, Object[] vals) Binds multiple values to a named query parameter.JdbcQuery.setParameterList(String name, Object[] vals, Object type, Class<?>... moreTypes) Binds multiple values to a named query parameter.protected voidJdbcQuery.setParameters(PreparedStatement ps, SqlFromToPlugin.LimitType limitType, int start) Sets the value of the designated parameters.JdbcQuery.unique(SqlRuntimeContext runtimeCtx) Convenience method to return a single instance that matches the query, or null if the query returns no results.intJdbcQuery.update(SqlRuntimeContext runtimeCtx) Executes the update, delete or insert statement.