Mercurial > hg > orthanc-databases
view MySQL/Plugins/DeleteResources.sql @ 575:4c84d908e891 find-refactoring
fix statistics in read-only
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Mon, 30 Sep 2024 18:02:36 +0200 |
parents | d0dd95ff0662 |
children |
line wrap: on
line source
DROP PROCEDURE IF EXISTS DeleteResources; CREATE PROCEDURE DeleteResources( IN p_id BIGINT ) BEGIN DECLARE v_internalId BIGINT@ DECLARE done INT DEFAULT FALSE@ DECLARE cur1 CURSOR FOR SELECT internalId FROM DeletedResources@ DECLARE CONTINUE HANDLER FOR SQLSTATE '02000' SET done = TRUE@ set done=FALSE@ OPEN cur1@ REPEAT FETCH cur1 INTO v_internalId@ IF NOT done THEN DELETE FROM Resources WHERE internalId=v_internalId@ END IF@ UNTIL done END REPEAT@ CLOSE cur1@ END;