Uses of Class
com.denodo.vdb.engine.storedprocedure.StoredProcedureException
Packages that use StoredProcedureException
Package
Description
Provides the abstract classes, interfaces and exceptions necessary to implement the stored
procedures.
-
Uses of StoredProcedureException in com.denodo.vdb.engine.storedprocedure
Subclasses of StoredProcedureException in com.denodo.vdb.engine.storedprocedureMethods in com.denodo.vdb.engine.storedprocedure that throw StoredProcedureExceptionModifier and TypeMethodDescriptionStoredProcedureExecutor.call(String accessName, Object[] inputValues, com.denodo.vdb.misc.IContext context) Method which executes the stored procedure.protected abstract voidThe Execution Engine invokes this method when this procedure is called.
If the procedure has to return results, invokegetProcedureResultSetfrom this method, to obtain an object of the classStoredProcedureResultSet, which will contain the results that this procedure will return.DatabaseEnvironment.executeQuery(String query) Executes a query against the VDP server.DatabaseEnvironment.executeQuery(String query, int actionType) Executes a query against the VDP server with an action typeDatabaseEnvironment.executeQuery(String query, long queryTimeout, long chunkTimeout, long chunkSize) Executes a query against the VDP server.DatabaseEnvironment.executeQuery(String query, long queryTimeout, long chunkTimeout, long chunkSize, int actionType) Executes a query against the VDP server with a custom action typeDatabaseEnvironment.executeQuery(String query, Object[] parameterValues) Executes a parameterized query.DatabaseEnvironment.executeQuery(String query, Object[] parameterValues, long queryTimeout, long chunkTimeout, long chunkSize) Executes a parameterized query specifying the timeouts.intDatabaseEnvironment.executeUpdate(String query) Executes an INSERT, UPDATE or DELETE query.intDatabaseEnvironment.executeUpdate(String query, int actionType) Executes an INSERT, UPDATE or DELETE query.intDatabaseEnvironment.executeUpdate(String query, Object[] parameterValues) Executes a parameterized INSERT, UPDATE or DELETE query.intDatabaseEnvironment.executeUpdate(String query, Object[] parameterValues, int actionType) Executes a parameterized INSERT, UPDATE or DELETE query with an action type.intDatabaseEnvironment.executeUpdate(String query, Object[] parameterValues, long queryTimeout) Executes a parameterized INSERT, UPDATE or DELETE query specifying the timeouts.DatabaseEnvironment.executeVqlCommand(String command) Executes a VQL command.DatabaseEnvironment.executeVqlCommand(String command, long queryTimeout) Executes a VQL command with a timeout.DatabaseEnvironment.executeVqlCommand(String databaseName, String command) Executes a VQL command over the given database.DatabaseEnvironment.executeVqlCommand(String databaseName, String command, long queryTimeout) Executes a VQL command over the given database with a timeout.DatabaseEnvironment.getDatabaseProperty(String name) Obtains a database property.StoredProcedureResultSet.getExecutionPlan()Obtains the execution plan of the procedurebooleanStoredProcedureResultSet.hasMoreElements()Tests if this enumeration contains more elements.Executes a function on the VDP server.DatabaseEnvironment.lookupFunction(String functionName, int arity) Obtains a handler to execute a function.DatabaseEnvironment.lookupProcedure(String procedureName) Obtains a stored procedure reference, which can be used to execute it.StoredProcedureResultSet.nextElement()Returns the next element of this enumeration if this enumeration object has at least one more element to provide.