Table of Contents
- 17.1. Stored Routines and the Grant Tables
- 17.2. Stored Routine Syntax
-
-
17.2.1.
CREATE PROCEDURE
andCREATE FUNCTION
Syntax -
17.2.2.
ALTER PROCEDURE
andALTER FUNCTION
Syntax -
17.2.3.
DROP PROCEDURE
andDROP FUNCTION
Syntax -
17.2.4.
CALL
Statement Syntax -
17.2.5.
BEGIN ... END
Compound Statement Syntax -
17.2.6.
DECLARE
Statement Syntax - 17.2.7. Variables in Stored Routines
- 17.2.8. Conditions and Handlers
- 17.2.9. Cursors
- 17.2.10. Flow Control Constructs
-
17.2.1.
- 17.3. Stored Procedures, Functions, Triggers, and Replication: Frequently Asked Questions
- 17.4. Binary Logging of Stored Routines and Triggers
Stored routines (procedures and functions) are supported in MySQL 5.0. A stored procedure is a set of SQL statements that can be stored in the server. Once this has been done, clients don't need to keep reissuing the individual statements but can refer to the stored procedure instead.
Some situations where stored routines can be particularly useful:
-
When multiple client applications are written in different languages or work on different platforms, but need to perform the same database operations.
-
When security is paramount. Banks, for example, use stored procedures and functions for all common operations. This provides a consistent and secure environment, and routines can ensure that each operation is properly logged. In such a setup, applications and users would have no access to the database tables directly, but can only execute specific stored routines.
Stored routines can provide improved performance because less information needs to be sent between the server and the client. The tradeoff is that this does increase the load on the database server because more of the work is done on the server side and less is done on the client (application) side. Consider this if many client machines (such as Web servers) are serviced by only one or a few database servers.
Stored routines also allow you to have libraries of functions in the database server. This is a feature shared by modern application languages that allow such design internally (for example, by using classes). Using these client application language features is beneficial for the programmer even outside the scope of database use.
MySQL follows the SQL:2003 syntax for stored routines, which is also used by IBM's DB2.
The MySQL implementation of stored routines is still in progress. All syntax described in this chapter is supported and any limitations and extensions are documented where appropriate. Further discussion of restrictions on use of stored routines is given in Section I.1, “Restrictions on Stored Routines and Triggers”.
Binary logging for stored routines takes place as described in Section 17.4, “Binary Logging of Stored Routines and Triggers”.
Recursive stored procedures are disabled by default, but can be
enabled on the server by setting the
max_sp_recursion_depth
server system variable to
a nonzero value. See Section 5.2.2, “Server System Variables”, for
more information.
Stored functions cannot be recursive. See Section I.1, “Restrictions on Stored Routines and Triggers”.
Stored routines require the proc
table in the
mysql
database. This table is created during
the MySQL 5.0 installation procedure. If you are
upgrading to MySQL 5.0 from an earlier version, be
sure to update your grant tables to make sure that the
proc
table exists. See
Section 5.6.2, “mysql_upgrade — Check Tables for MySQL Upgrade”.
The server manipulates the mysql.proc
table in
response to statements that create, alter, or drop stored
routines. It is not supported that the server will notice manual
manipulation of this table.
Beginning with MySQL 5.0.3, the grant system takes stored routines into account as follows:
-
The
CREATE ROUTINE
privilege is needed to create stored routines. -
The
ALTER ROUTINE
privilege is needed to alter or drop stored routines. This privilege is granted automatically to the creator of a routine. -
The
EXECUTE
privilege is required to execute stored routines. However, this privilege is granted automatically to the creator of a routine. Also, the defaultSQL SECURITY
characteristic for a routine isDEFINER
, which enables users who have access to the database with which the routine is associated to execute the routine.