Posts by Luis Marcelo Santos • 13 points
4 posts
-
0
votes2
answers37
viewsA: How to run a . sql file containing a Procedure (oracle) in Java
The solution was to implement using Scriptrunner: ScriptRunner sr = new ScriptRunner(conexão com BD); Reader reader = new BufferedReader(new FileReader("aqui o arquivo xxx.sql"));…
-
0
votes2
answers39
viewsQ: How to solve Sonarqube’s criticism: Read of unwritten field Connector
In my class in the method findRecursosMensagem() Sonarqube makes a criticism, but I did not understand what should be corrected. Could help me understand what must be done? public class…
-
0
votes2
answers37
viewsQ: How to run a . sql file containing a Procedure (oracle) in Java
I have this script inside a file named xxx.sql how do I create Procedure through a call within java code? DECLARE PROCEDURE P_GERA_LOG(P_TEXTO IN VARCHAR2) IS BEGIN…
-
0
votes1
answer27
viewsQ: How to build: click on the current line and load the clicked line information
In my template there is a form and data-table with the information "originated from the form". My difficulty is how to implement that when clicking on the table row causes the information to be…