Posts by Ana • 31 points
3 posts
-
-2
votes1
answer563
viewsQ: JDBC Callablestatement: Application hangs when calling Procedure
When I run a Procedure by the application it hangs, but in the bank performs normal. This is the way I use to call Procedure: public int incluir(TOCompra compra) { try { PreparedStatement ps =…
-
0
votes1
answer406
viewsQ: place name in columns from an object array
public class TableModelAgendamento extends AbstractTableModel { int contador = 1; int qtdFuncionario; private TOFuncionario[] func = new TOFuncionario[qtdFuncionario]; String coluna[] = new…
-
3
votes1
answer3182
viewsQ: Duplicate record - Firebird
In Firebird how to delete duplicate records, keeping only one of them? Someone could help me. I have this select, but it deletes all records, use Firebird 2.1 delete from vendaproduto where…