Posts by Ricardo F. Rodrigues • 1 point
2 posts
-
0
votes1
answer18
viewsA: Problem with update Trigger PLPGSQL
Please specify the primary key of your tables: Perhaps the code below will serve you. UPDATE pcp.estoque_movimento As T SET T.entrada = NEW.saldo Where T.prefixoproduto = NEW.prefixoproduto and T.id…
-
0
votes1
answer21
viewsA: Reading from java csv
I usually use the java.util.Scanner scanner class in these cases.; // your code before the while scanner = new Scanner( row ).useDelimiter(","); // then you access each field scanner.nextInt(); //…
javaanswered Ricardo F. Rodrigues 1