Types of Stored Procedures
Firebird supports two types of stored procedures: executable and selectable.
Firebird supports two types of stored procedures: executable and selectable.
Executable procedures usually modify data in a database.They can receive input parameters and return a single set of output (RETURNS
) parameters.They are called using the EXECUTE PROCEDURE
statement.See an example of an executable stored procedure at the end of the CREATE PROCEDURE
section of [fblangref50-ddl].