Posts by Michael Bouix • 9 points
4 posts
-
0
votes3
answers402
viewsA: How to do an operation on a Trigger? MYSQL
Try this! CREATE TRIGGER aumentarsalario AFTER INSERT ON empregados FOR EACH ROW BEGIN UPDATE EMPREGADOS SET SALARIO = 1.1 * SALARIO WHERE SALARIO < 900; END;…
-
0
votes0
answers91
viewsQ: Admob Banner - Android
I’m trying to put a banner on my app, actually I got it. But when I run the virtual machine, it sits underneath the buttons, the machine is a Nexus 5. My activity_main code is this. <?xml…
-
-1
votes1
answer2005
viewsA: Insert variable in image CRS
Try this First you should give an ID for your IMG tag. Example: Code: <img src="" id="minhaImagem"> Now within your javascript code you can dynamically change the SRC attribute. Code:…
-
1
votes1
answer116
viewsQ: Alternativa Cron Job
I need to run this cron job ***** wget --spider -O - http://dominio.com/cron >/dev/null 2>&1 But the hosting doesn’t let me use ">" , would have some alternative to this task? look what…