sql >> Database >  >> RDS >> Mysql

Debuggen van MySQL-triggers

Er is een alternatieve manier om het te testen door een tijdelijke debug tafel . In het voorbeeld hier maken ze het in een eigen debug database.

Stap 1: Maak een tafel

DROP TABLE IF EXISTS debug;
CREATE TABLE debug (
  proc_id varchar(100) default NULL,
  debug_output text,
  line_id int(11) NOT NULL auto_increment,
  PRIMARY KEY  (line_id)
)

Stap 2: Maak debug-SP's om de debug-tabel te vullen

DELIMITER $$

DROP PROCEDURE IF EXISTS `debug_insert` $$
CREATE PROCEDURE `debug_insert`(in p_proc_id varchar(100),in p_debug_info text)
begin
  insert into debug (proc_id,debug_output)
  values (p_proc_id,p_debug_info);
end $$

DROP PROCEDURE IF EXISTS `debug_on` $$
CREATE PROCEDURE `debug_on`(in p_proc_id varchar(100))
begin
  call debug_insert(p_proc_id,concat('Debug Started :',now()));
end $$

DROP PROCEDURE IF EXISTS `debug_off` $$
CREATE PROCEDURE `debug_off`(in p_proc_id varchar(100))
begin
  call debug_insert(p_proc_id,concat('Debug Ended :',now()));
  select debug_output from debug where proc_id = p_proc_id order by line_id;
  delete from debug where proc_id = p_proc_id;
end $$

Stap 3: Roep de debug-SP's op in uw trigger

Zoals dit,

CREATE PROCEDURE test_debug()
begin
declare l_proc_id varchar(100) default 'test_debug';
  call debug_on(l_proc_id);
  call debug_insert(l_proc_id,'Testing Debug');
  call debug_off(l_proc_id);
end $$

Als resultaat zou de foutopsporingstabel als volgt worden gevuld,

+------------------------------------+
| debug_output                       |
+------------------------------------+
| Debug Started :2006-03-24 16:10:33 |
| Testing Debug                      |
| Debug Ended :2006-03-24 16:10:33   |
+------------------------------------+


  1. Hibernate-configuratiebestand (.cfg.xml) voor het toewijzen van meerdere MySQL-tabellen in dezelfde database?

  2. Hoeveel records kan ik opslaan in 5 MB PostgreSQL op Heroku?

  3. Hoe de kolomkoppen te verwijderen bij het e-mailen van queryresultaten in SQL Server (T-SQL)

  4. Hoe Substr() werkt in SQLite