Posts by Gelvazio Camargo • 7 points
4 posts
-
0
votes2
answers38
viewsA: I need to convert to current PHP
It works yes, there must be some other error in your code... Take a look at the php manual for every function that doesn’t work. https://www.php.net/manual/en/mysqli-result.fetch-array.php I tested…
-
-2
votes2
answers38
viewsA: I need to convert to current PHP
SO change from "mysql_" to "mysqli_", use CTRL + SPACE that will fill in correctly. It’s all about testing...
-
0
votes1
answer62
viewsA: How to add an array of objects on a grid line of a java Jtable
I found the solution: Object [] objeto = new Object[2]; for (int i=0;i<2;i++){ objeto[i] = "teste"+i; } for (ModelCondicaoPagamento aux : dados) { modelo.addRow(objeto); }…
-
1
votes1
answer62
viewsQ: How to add an array of objects on a grid line of a java Jtable
I have a code snippet that works as follows: protected void listaTodosRegistros(boolean bAberturaConsulta, JTable tbGrid, boolean bFiltraTodos) { DefaultTableModel modelo = new DefaultTableModel();…