Results 1 to 2 of 2
Thread: JTable
- 09-05-2012, 08:02 AM #1
Member
- Join Date
- Aug 2012
- Posts
- 5
- Rep Power
- 0
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
Java Code:now table is table a me need a a+1 a3 a4 .... 1 1 2 3 4 ..... 2 3 4Java 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); } }Last edited by skuskusas; 09-05-2012 at 08:43 AM. Reason: add exsample
- 09-05-2012, 09:17 AM #2
Moderator
- Join Date
- Feb 2009
- Location
- New Zealand
- Posts
- 4,561
- Rep Power
- 11
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.
Similar Threads
-
Jtable inside Jtable
By anchitanc in forum AWT / SwingReplies: 5Last Post: 05-26-2012, 08:10 PM -
JTable validate already existing JTable data and set Background colour issue
By pi4r0n in forum AWT / SwingReplies: 4Last Post: 04-02-2012, 07:57 PM -
jtable
By nr.senthilmurugan in forum NetBeansReplies: 1Last Post: 02-02-2011, 04:57 AM -
Adding New JTable in JTable
By anilkumar_vist in forum New To JavaReplies: 0Last Post: 01-27-2010, 08:27 AM -
Jtable duplicates through Hashtable (JTable condition problem) my assignment plz help
By salmanpirzada1 in forum Advanced JavaReplies: 2Last Post: 05-15-2008, 10:15 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks