Posts by Gabriel Pereira • 31 points
4 posts
-
1
votes0
answers423
viewsQ: Mysql Trigger with more than one cursor
I have a Trigger where I have 3 cursors, but it only runs correctly one of them(soma_pointo_cursor), the other two run incorrectly, I’ve tried with three separate loops, and it didn’t work either.…
-
0
votes2
answers234
viewsA: Trigger that accumulates the Mysql result
Well, from Vitor’s answer I was able to solve the question. DELIMITER // CREATE TRIGGER upd_etapa AFTER UPDATE ON etapa FOR EACH ROW BEGIN DECLARE pfj_equipe_ficticia_id INTEGER; -- DECLARE…
-
1
votes2
answers234
viewsQ: Trigger that accumulates the Mysql result
Considering the following tables: Gambler( id; name number. ) j equipe_ficticia( id; user name; name; dot_fictitious; ) Ef equipe_ficticia_player( id; equipeFicticiaId; pilotoId; ) efj step( id;…
-
1
votes3
answers1797
viewsQ: How to send Jquery Json array to PHP
I have a table where the lines constantly change order, I need to record this table in the bank. Since I will no longer modify the table I click on a "Confirm Grid" button, at that moment save this…