Firebird Documentation Index → Firebird 2.1 Language Ref. Update → DDL statements → PROCEDURE |
Table of Contents
Find a more recent version at Firebird 5.0 Language Reference: PROCEDURE
A stored procedure (SP) is a code module that can be called by the client, by another stored procedure, an executable block or a trigger. Stored procedures, executable blocks and triggers are written in Procedural SQL (PSQL). Most SQL statements are also available in PSQL, sometimes with restrictions or extensions. Notable exceptions are DDL and transaction control statements.
Stored procedures can accept and return multiple parameters.
Table of Contents
Available in: DSQL, ESQL
Description: Creates a stored procedure.
Syntax:
CREATE PROCEDUREprocname
[(<inparam>
[,<inparam>
...])] [RETURNS (<outparam>
[,<outparam>
...])] AS [<declarations>
] BEGIN [<PSQL statements>
] END<inparam>
::=<param_decl>
[{= | DEFAULT}value
]<outparam>
::=<param_decl>
<param_decl>
::=paramname
<type>
[NOT NULL] [COLLATEcollation
]<type>
::=sql_datatype
| [TYPE OF]domain
<declarations>
::= See PSQL::DECLARE for the exact syntax /* Ifsql_datatype
is a string type, it may include a character set */
Changed in: 2.1
Description: Firebird 2.1 and up support the use of domains instead of SQL datatypes when declaring input/output parameters and local variables. With the “TYPE OF” modifier, only the domain's type is used – not its NOT NULL setting, CHECK constraint and/or default value. If the domain is of a text type, its character set and collation are always preserved.
Example:
create domain bool3 smallint check (value is null or value in (0,1)); create domain bigposnum bigint check (value >= 0); /* Determines if A is a multiple of B: */ set term #; create procedure ismultiple (a bigposnum, b bigposnum) returns (res bool3) as declare ratio type of bigposnum; -- ratio is a bigint declare remainder type of bigposnum; -- so is remainder begin if (a is null or b is null) then res = null; else if (b = 0) then begin if (a = 0) then res = 1; else res = 0; end else begin ratio = a / b; -- integer division! remainder = a - b*ratio; if (remainder = 0) then res = 1; else res = 0; end end# set term ;#
If a domain's definition is changed, existing PSQL code using that domain may become invalid. For information on how to detect this, please read the note The RDB$VALID_BLR field, near the end of this document.
Changed in: 2.1
Description: Firebird 2.1 and up allow COLLATE clauses in declarations of input/output parameters and local variables.
Example:
create procedure SpanishToDutch (es_1 varchar(20) character set iso8859_1 collate es_es, es_2 my_char_domain collate es_es) returns (nl_1 varchar(20) character set iso8859_1 collate du_nl, nl_2 my_char_domain collate du_nl) as declare s_temp varchar(100) character set utf8 collate unicode; begin ... ... end
Changed in: 2.1
Description: Firebird 2.1 and up allow NOT NULL constraints in declarations of input/output parameters and local variables.
Example:
create procedure RegisterOrder (order_no int not null, description varchar(200) not null) returns (ticket_no int not null) as declare temp int not null; begin ... ... end
Changed in: 2.0
Description: It is now possible to provide default values for stored procedure arguments, allowing the caller to omit one or more items (possibly even all) from the end of the argument list.
Syntax:
CREATE PROCEDUREprocname
(<inparam>
[,<inparam>
...]) ...<inparam>
::=paramname
datatype
[{= | DEFAULT}value
]Important: If you provide a default value for a parameter, you must do the same for any and all parameters following it.
Table of Contents
Available in: DSQL, ESQL
Added in: 2.0
Description: You can now provide default values for stored procedure arguments, allowing the caller to omit one or more items from the end of the argument list. See CREATE PROCEDURE for syntax and details.
Example:
alter procedure TestProc (a int, b int default 1007, s varchar(12) = '-') ...
Changed in: 2.1
Description: Firebird 2.1 and up allow COLLATE clauses in declarations of input/output parameters and local variables. See CREATE PROCEDURE for syntax and details.
Changed in: 2.1
Description: Firebird 2.1 and up support the use of domains instead of SQL datatypes when declaring input/output parameters and local variables. See CREATE PROCEDURE for syntax and details.
Changed in: 2.1
Description: Firebird 2.1 and up allow NOT NULL constraints in declarations of input/output parameters and local variables. See CREATE PROCEDURE for syntax and details.
Changed in: 2.0, 2.0.1
Description: In Firebird 2.0 only, a restriction is in place which prevents anyone from dropping, altering or recreating a trigger or stored procedure if it has been used since the database was opened. This restriction has been removed again in version 2.0.1. Still, performing these operations on a live database is potentially risky and should only be done with the utmost care.
Available in: DSQL
Added in: 1.5
Description: If the procedure does not yet exist, it is created just as if CREATE PROCEDURE were used. If it already exists, it is altered and recompiled. Existing permissions and dependencies are preserved.
Syntax: Exactly the same as for CREATE PROCEDURE.
Table of Contents
Available in: DSQL, ESQL
Changed in: 2.0, 2.0.1
Description: In Firebird 2.0 only, a restriction is in place which prevents anyone from dropping, altering or recreating a trigger or stored procedure if it has been used since the database was opened. This restriction has been removed again in version 2.0.1. Still, performing these operations on a live database is potentially risky and should only be done with the utmost care.
Table of Contents
Available in: DSQL
Added in: 1.0
Description: Creates or recreates a stored procedure. If a procedure with the same name already exists, RECREATE PROCEDURE will try to drop it and create a new procedure. RECREATE PROCEDURE will fail if the existing SP is in use.
Syntax: Exactly the same as CREATE PROCEDURE.
Changed in: 2.0, 2.0.1
Description: In Firebird 2.0 only, a restriction is in place which prevents anyone from dropping, altering or recreating a trigger or stored procedure if it has been used since the database was opened. This restriction has been removed again in version 2.0.1. Still, performing these operations on a live database is potentially risky and should only be done with the utmost care.
Firebird Documentation Index → Firebird 2.1 Language Ref. Update → DDL statements → PROCEDURE |