-
JTable
Hi here i get all rows from from DB. I want get sss = rs.getInt(5); from DB ant set to Colheads.
or no to column but to first Row all data from column;
Exsample
Code:
now table is table a me need a a+1 a3 a4 ....
1 1 2 3 4 .....
2
3
4
Code:
p2 = new JPanel();
try {
rs = st.executeQuery("SELECT * from item");
} catch (SQLException ex) {
Logger.getLogger(nn.class.getName()).log(Level.SEVERE, null, ex);
}
try {
while (rs.next()) {
s = rs.getInt(1);
a = rs.getString(2);
ss = rs.getInt(3);
aa = rs.getString(4);
sss = rs.getInt(5);
ssss = rs.getInt(6);
rows++;
}
data1 = new Object[rows][6];
Object[] Colheads = {"Isss = rs.getInt(5) here need some help !!!!!!!!!!"};
rs = st.executeQuery("Select * from item");
for (int i1 = 0; i1 < rows; i1++) {
rs.next();
for (int j1 = 0; j1 < 6; j1++) {
data1[i1][j1] = rs.getString(j1 + 1);
}
}
-
Re: JTable
Also at www.javaprogrammingforums.com and codecall.net
@OP: If you are going to start a discussion at multiple places, please let everyone know that. Post links. So that others can know what else is being said.
Also bear in mind that many people won't respond to questions that are posed this way for fear of wasting their time on something that could have been answered elsewhere.