sql >> Database >  >> RDS >> Mysql

MySQL - Hoe te controleren of START TRANSACTIE actief is?

U kunt een procedure maken die misbruik maakt van een fout die alleen binnen een transactie kan optreden:

DELIMITER //
CREATE PROCEDURE `is_in_transaction`(OUT $transaction bool)
BEGIN
    DECLARE oldIsolation TEXT DEFAULT @@TRANSACTION_ISOLATION;
    DECLARE EXIT HANDLER FOR 1568 BEGIN
        -- error 1568 will only be thrown within a transaction
        SET $transaction = true;
    END;
    -- will throw an error if we are within a transaction
    SET TRANSACTION ISOLATION LEVEL REPEATABLE READ;
    -- no error was thrown - we are not within a transaction
    SET TRANSACTION_ISOLATION = oldIsolation;
    SET $transaction = false;
END//
DELIMITER ;

Test de procedure:

set @within_transaction := null;
set @out_of_transaction := null;

begin;
    CALL is_in_transaction(@within_transaction);
commit;

CALL is_in_transaction(@out_of_transaction);

select @within_transaction, @out_of_transaction;

Resultaat:

@within_transaction | @out_of_transaction
--------------------|--------------------
                  1 |                   0

Met MariaDB kunt u @@in_transaction . gebruiken



  1. Hoe te controleren of 'MySQL-server is verdwenen'

  2. Hoe meerdere id's toewijzen aan één rij in MySQL?

  3. Opmerkingen over PostgreSQL B-Tree-indexen

  4. Hoe bouw je een 'gerelateerde vragen' engine?