Aspire not only allows you to access and update data using stored procedures but also allows additional features to use stored procedures as the business layer. Here are a few things where and how stored procedures could be used in Aspire
But there are some patterns and caveats you have to follow to effectively use stored procedures in aspire. For example calling a stored procedure is somewhat dependent on a database. Calling a stored procedure in Oracle is different from calling a stored procedure in SQLServer. This article goes into some of these details.
Let's first consider reading from a table using plain sql
request.getEmployeeInfo.classname=com.ai.db.DBRequestExecturo2
request.getEmployeeInfo.db=some-db
request.getEmployeeInfo.stmt=\
select * from employees_table \
where employee_id = {employeeId}
Let's assume we have a stored procedure in SQLServer that does this. Assume further the name of the procedure is
sp_getEmployeeInfo(employeeId)
You can alter the above aspire properties as follows
request.getEmployeeInfo.classname=com.ai.db.DBRequestExecturo2
request.getEmployeeInfo.db=some-db
request.getEmployeeInfo.stmt=sp_getEmployeeInfo({employeeId})
request.getEmployeeInfo.classname=com.ai.db.StoredProcedureExecutor2
request.getEmployeeInfo.db=some-db
request.getEmployeeInfo.stmt=\
call sp_getEmployeeInfo(?,{employeeId})
The component StoredProcedureExecutor2 is specific to Oracle. Also notice the syntactical difference of calling the oracle stored procedure. Oracle has special requirements for calling stored procedures. Inside of the Oracle stored procedure you will have to use REFCURSOR as your first argument to the procedure. This component supports only result sets that come back, and not individual variables. Read Oracle's JDBC documentation for writing stored procedures with REFCURSORS.
Even if you want to return a single value from the stored procedure, to fit into the Aspire pattern, you have to return a cursor (same as a result set). This means depending on the database the mechanism of doing this may be different.
Using stored procedures you can also raise exceptions. These exceptions can be used to redirect the user to a different web page. Read this document to see how exceptions effect redirections.
aspire - Saturday, September 16, 2006 7:24:31 PM
How to raise an exception in Oracle
The procedure RAISE_APPLICATION_ERROR lets you issue user-defined ORA- error messages from stored subprograms. That way, you can report errors to your application and avoid returning unhandled exceptions.
To call RAISE_APPLICATION_ERROR, use the syntax
raise_application_error(error_number, message[, {TRUE | FALSE}]);
where error_number is a negative integer in the range -20000 .. -20999 and message is a character string up to 2048 bytes long. If the optional third parameter is TRUE, the error is placed on the stack of previous errors. If the parameter is FALSE (the default), the error replaces all previous errors. RAISE_APPLICATION_ERROR is part of package DBMS_STANDARD, and as with package STANDARD, you do not need to qualify references to it.
The above is extracted an education note from Standford site
aspire - Saturday, September 16, 2006 7:26:28 PM
Imagine the following using the above example
raise_application_error(-20001,"INVALID_EMPLOYEE:this is an invalid emloyee")
You are raising an exception here with a message starting with "INVALID_EMPLOYEE:...".
You can use this in the redirection of the page as follows
aspire - Saturday, September 16, 2006 7:29:33 PM
Redirecting using the exception ...
request.SomeUpdateRequest.classname=com.ai.db.StoredProcedureExecutor2 .... other definitions to call the proc request.SomeUpdateRequest.redirectURL=\ /{aspireContext}/display?url=welcomePageURL&username={username} request.SomeUpdateRequest.failureRedirectURL.INVALID_EMPLOYEE=\ /{aspireContext}/display?url=LoginPageURL\ &pageStatus=invalid-employee&vs={viewState}
See how "INVALID_EMPLOYEE" is used by the page redirector.
aspire - Saturday, September 16, 2006 7:30:19 PM
Using SQLServer would be similar...
Raising an exception message in sqlserver may be different, but once you figure it out, you can make it do the same thing.