Posts by braghetti0303 • 61 points
2 posts
-
5
votes6
answers14101
viewsA: String Format with Javascript
From ES6 you can use this template: let soMany = 10; console.log(`This is ${soMany} times easier!`); // "This is 10 times easier! Link to the detailed reply…
-
1
votes1
answer124
viewsQ: Interrupt Thread (Java) does not kill execution in Oracle database
Guys, I’m working on a script runner PL/SQL, using the JDBC Statement to make my connections with the bank. My problem is that the project works with Threads and when the user wants to interrupt the…