Overview
ALTIBASE stored procedures(PSM, Persistent Stored Modules) of ALTIBASE HDB might be divided into three as below.
- Stored Procedure: With input, output and input/output parameters, A user can execute SQL statement with a predefined procedures inside a procedure by using it. It doesn't return a value and delivers a value to the client through output and input/output parameters.
- Stored function: Same as a procedure shown above, but it has one return value. Since it has return one value, it can be utilized as operand in an expression of SQL statement.
- Typeset: It is a set of definition for user-defined types. In the main, it is chiefly used to exchange user-defined types with parameters or return value among stored procedures.
What's Stored Procedures
Stored procedures are very similar tool to the ORACLE's PL/SQL in concept.
Stored procedures are one of database object comprising SQL statement, Control flow statement, exception handler, etc.
Stored procedures are is created in advance, compiled, and stored in database, ready for execution.
In that state, stored procedures can be simultaneously accessed by multiple SQL statements.
The term “stored procedures” is sometimes used to refer to the stored procedures and stored functions collectively.
The stored procedures and stored functions differ only in that stored functions return a value to the calling application, whereas the stored procedures do not.
The ALTIBASE Stored Procedure's overall syntax is very similar to the ORACLE's PL/SQL statement.
Basic syntax of the procedures used in ORACLE's PL/SQL is almost same with Altibase Stored Procedures,
So you can easily convert the ORACLE Procedure to the ALTIBASE Stored Procedure except for some functions which are not supported in the ALTIBASE HDB.
We call these ALTIBASE Stored Procedure to the ALTIBASE PSM ( Persistent Stored Modules) with a different name.
ALTIBASE Stored Procedures can be made with 'CREATE PROCEDURE' and 'CREATE FUNCTION' statement that has synax of ORACLE Procedure.
For further information about these statements, please refer to 'ALTIBASE Stored Procedure Manual'.(ALTIBASE Stored Procedure Manual)