Rechercher dans le manuel MySQL

24.1 Defining Stored Programs

Each stored program contains a body that consists of an SQL statement. This statement may be a compound statement made up of several statements separated by semicolon (;) characters. For example, the following stored procedure has a body made up of a BEGIN ... END block that contains a SET statement and a REPEAT loop that itself contains another SET statement:

  1. CREATE PROCEDURE dorepeat(p1 INT)
  2.   SET @x = 0;
  3.   REPEAT SET @x = @x + 1; UNTIL @x > p1 END REPEAT;

If you use the mysql client program to define a stored program containing semicolon characters, a problem arises. By default, mysql itself recognizes the semicolon as a statement delimiter, so you must redefine the delimiter temporarily to cause mysql to pass the entire stored program definition to the server.

To redefine the mysql delimiter, use the delimiter command. The following example shows how to do this for the dorepeat() procedure just shown. The delimiter is changed to // to enable the entire definition to be passed to the server as a single statement, and then restored to ; before invoking the procedure. This enables the ; delimiter used in the procedure body to be passed through to the server rather than being interpreted by mysql itself.

  1. mysql> delimiter //
  2.  
  3. mysql> CREATE PROCEDURE dorepeat(p1 INT)
  4.     -> BEGIN
  5.     ->   SET @x = 0;
  6.     ->   REPEAT SET @x = @x + 1; UNTIL @x > p1 END REPEAT;
  7.     -> END
  8.     -> //
  9. Query OK, 0 rows affected (0.00 sec)
  10.  
  11. mysql> delimiter ;
  12.  
  13. mysql> CALL dorepeat(1000);
  14. Query OK, 0 rows affected (0.00 sec)
  15.  
  16. mysql> SELECT @x;
  17. +------+
  18. | @x   |
  19. +------+
  20. | 1001 |
  21. +------+
  22. 1 row in set (0.00 sec)

You can redefine the delimiter to a string other than //, and the delimiter can consist of a single character or multiple characters. You should avoid the use of the backslash (\) character because that is the escape character for MySQL.

The following is an example of a function that takes a parameter, performs an operation using an SQL function, and returns the result. In this case, it is unnecessary to use delimiter because the function definition contains no internal ; statement delimiters:

  1. mysql> CREATE FUNCTION hello (s CHAR(20))
  2.     -> RETURN CONCAT('Hello, ',s,'!');
  3. Query OK, 0 rows affected (0.00 sec)
  4.  
  5. mysql> SELECT hello('world');
  6. +----------------+
  7. | hello('world') |
  8. +----------------+
  9. | Hello, world!  |
  10. +----------------+
  11. 1 row in set (0.00 sec)

Zoek in de MySQL-handleiding

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-stored-programs-defining.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:en Manuel MySQL : https://dev.mysql.com/

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut