Posts by Pedro N • 66 points
2 posts
-
5
votes3
answers652
viewsA: Development process with Docker
One answer at a time: Technically Docker generates "snapshot of the machine" so all developers must pull from the same hub to have no difference in the correct container? Exactly. That machine…
-
0
votes3
answers74
viewsA: SQL Query autodelete
It is possible with the use of Stored Procedures: /*Criar stored procedure*/ DELIMITER // CREATE PROCEDURE auto_remove(IN nome VARCHAR(64)) BEGIN /*Criar uma tabela temporaraia para guardar o valor…