Version sans cache

Mise en cache désactivé. Réglage défaut pour cette page : actif (code DEF204)
Si l'affichage est trop lent, vous pouvez désactiver le mode utilisateur pour visualiser la version en cache.

Rechercher dans le manuel MySQL

13.6.7.6 Scope Rules for Handlers

A stored program may include handlers to be invoked when certain conditions occur within the program. The applicability of each handler depends on its location within the program definition and on the condition or conditions that it handles:

  • A handler declared in a BEGIN ... END block is in scope only for the SQL statements following the handler declarations in the block. If the handler itself raises a condition, it cannot handle that condition, nor can any other handlers declared in the block. In the following example, handlers H1 and H2 are in scope for conditions raised by statements stmt1 and stmt2. But neither H1 nor H2 are in scope for conditions raised in the body of H1 or H2.

    1. BEGIN -- outer block
    2.   DECLARE EXIT HANDLER FOR ...;  -- handler H1
    3.   DECLARE EXIT HANDLER FOR ...;  -- handler H2
    4.   stmt1;
    5.   stmt2;
  • A handler is in scope only for the block in which it is declared, and cannot be activated for conditions occurring outside that block. In the following example, handler H1 is in scope for stmt1 in the inner block, but not for stmt2 in the outer block:

    1. BEGIN -- outer block
    2.   BEGIN -- inner block
    3.     DECLARE EXIT HANDLER FOR ...;  -- handler H1
    4.     stmt1;
    5.   END;
    6.   stmt2;
  • A handler can be specific or general. A specific handler is for a MySQL error code, SQLSTATE value, or condition name. A general handler is for a condition in the SQLWARNING, SQLEXCEPTION, or NOT FOUND class. Condition specificity is related to condition precedence, as described later.

Multiple handlers can be declared in different scopes and with different specificities. For example, there might be a specific MySQL error code handler in an outer block, and a general SQLWARNING handler in an inner block. Or there might be handlers for a specific MySQL error code and the general SQLWARNING class in the same block.

Whether a handler is activated depends not only on its own scope and condition value, but on what other handlers are present. When a condition occurs in a stored program, the server searches for applicable handlers in the current scope (current BEGIN ... END block). If there are no applicable handlers, the search continues outward with the handlers in each successive containing scope (block). When the server finds one or more applicable handlers at a given scope, it chooses among them based on condition precedence:

  • A MySQL error code handler takes precedence over an SQLSTATE value handler.

  • An SQLSTATE value handler takes precedence over general SQLWARNING, SQLEXCEPTION, or NOT FOUND handlers.

  • An SQLEXCEPTION handler takes precedence over an SQLWARNING handler.

  • It is possible to have several applicable handlers with the same precedence. For example, a statement could generate multiple warnings with different error codes, for each of which an error-specific handler exists. In this case, the choice of which handler the server activates is nondeterministic, and may change depending on the circumstances under which the condition occurs.

One implication of the handler selection rules is that if multiple applicable handlers occur in different scopes, handlers with the most local scope take precedence over handlers in outer scopes, even over those for more specific conditions.

If there is no appropriate handler when a condition occurs, the action taken depends on the class of the condition:

  • For SQLEXCEPTION conditions, the stored program terminates at the statement that raised the condition, as if there were an EXIT handler. If the program was called by another stored program, the calling program handles the condition using the handler selection rules applied to its own handlers.

  • For SQLWARNING conditions, the program continues executing, as if there were a CONTINUE handler.

  • For NOT FOUND conditions, if the condition was raised normally, the action is CONTINUE. If it was raised by SIGNAL or RESIGNAL, the action is EXIT.

The following examples demonstrate how MySQL applies the handler selection rules.

This procedure contains two handlers, one for the specific SQLSTATE value ('42S02') that occurs for attempts to drop a nonexistent table, and one for the general SQLEXCEPTION class:

  1.   DECLARE CONTINUE HANDLER FOR SQLSTATE '42S02'
  2.     SELECT 'SQLSTATE handler was activated' AS msg;
  3.   DECLARE CONTINUE HANDLER FOR SQLEXCEPTION
  4.     SELECT 'SQLEXCEPTION handler was activated' AS msg;
  5.  
  6.   DROP TABLE test.t;

Both handlers are declared in the same block and have the same scope. However, SQLSTATE handlers take precedence over SQLEXCEPTION handlers, so if the table t is nonexistent, the DROP TABLE statement raises a condition that activates the SQLSTATE handler:

  1. mysql> CALL p1();
  2. +--------------------------------+
  3. | msg                            |
  4. +--------------------------------+
  5. | SQLSTATE handler was activated |
  6. +--------------------------------+

This procedure contains the same two handlers. But this time, the DROP TABLE statement and SQLEXCEPTION handler are in an inner block relative to the SQLSTATE handler:

  1. BEGIN -- outer block
  2.     DECLARE CONTINUE HANDLER FOR SQLSTATE '42S02'
  3.       SELECT 'SQLSTATE handler was activated' AS msg;
  4.   BEGIN -- inner block
  5.     DECLARE CONTINUE HANDLER FOR SQLEXCEPTION
  6.       SELECT 'SQLEXCEPTION handler was activated' AS msg;
  7.  
  8.     DROP TABLE test.t; -- occurs within inner block
  9.   END;

In this case, the handler that is more local to where the condition occurs takes precedence. The SQLEXCEPTION handler activates, even though it is more general than the SQLSTATE handler:

  1. mysql> CALL p2();
  2. +------------------------------------+
  3. | msg                                |
  4. +------------------------------------+
  5. | SQLEXCEPTION handler was activated |
  6. +------------------------------------+

In this procedure, one of the handlers is declared in a block inner to the scope of the DROP TABLE statement:

  1. BEGIN -- outer block
  2.   DECLARE CONTINUE HANDLER FOR SQLEXCEPTION
  3.     SELECT 'SQLEXCEPTION handler was activated' AS msg;
  4.   BEGIN -- inner block
  5.     DECLARE CONTINUE HANDLER FOR SQLSTATE '42S02'
  6.       SELECT 'SQLSTATE handler was activated' AS msg;
  7.   END;
  8.  
  9.   DROP TABLE test.t; -- occurs within outer block

Only the SQLEXCEPTION handler applies because the other one is not in scope for the condition raised by the DROP TABLE:

  1. mysql> CALL p3();
  2. +------------------------------------+
  3. | msg                                |
  4. +------------------------------------+
  5. | SQLEXCEPTION handler was activated |
  6. +------------------------------------+

In this procedure, both handlers are declared in a block inner to the scope of the DROP TABLE statement:

  1. BEGIN -- outer block
  2.   BEGIN -- inner block
  3.     DECLARE CONTINUE HANDLER FOR SQLEXCEPTION
  4.       SELECT 'SQLEXCEPTION handler was activated' AS msg;
  5.     DECLARE CONTINUE HANDLER FOR SQLSTATE '42S02'
  6.       SELECT 'SQLSTATE handler was activated' AS msg;
  7.   END;
  8.  
  9.   DROP TABLE test.t; -- occurs within outer block

Neither handler applies because they are not in scope for the DROP TABLE. The condition raised by the statement goes unhandled and terminates the procedure with an error:

  1. mysql> CALL p4();
  2. ERROR 1051 (42S02): Unknown table 'test.t'

Rechercher dans le manuel MySQL

Traduction non disponible

Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-handler-scope.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :en Manuel MySQL : https://dev.mysql.com/

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut