Posts by Jacson Modell • 29 points
4 posts
-
0
votes1
answer42
viewsQ: Insert a success message after Location.Reload()
I would like to add a successfully edited message via JS after reloading the page. The message is displayed before reloading the page and not before. Follows my code: Call AJAX: var resposta =…
-
0
votes2
answers14161
viewsA: What is the shortcut for code execution in Sublime Text?
It’s easy, just follow these steps: Tools > Build System > Automatic. Once this is done, when you need to run that switch, just give the CTRL+B command. I hope I’ve helped.…
-
0
votes2
answers217
viewsA: Migrate data from one table column to another table column
I was able to solve with the following SQL: INSERT INTO tb_bug_passo (bugp_bug_id, bugp_titulo) SELECT bug_id, bug_passos FROM tb_bug Tbm made a Stored Procedure that entered the order for me…
-
-1
votes2
answers217
viewsQ: Migrate data from one table column to another table column
I work in a company where we implement a new functionality in our system, but previously a field of our table was bug_passos varchar(500), now with the new implementation, we create a new table with…