Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
I can’t get my JTable to show anything

I can show my Table but I can't get any data in the table, just the column name. My code looks like this.

public static DefaultTableModel buildTableModel(ResultSet rs)
            throws SQLException {

        java.sql.ResultSetMetaData metaData = rs.getMetaData();

        // names of columns
        Vector<String> columnNames = new Vector<String>();
        int columnCount = metaData.getColumnCount();
        for (int column = 1; column <= columnCount; column++) {
            columnNames.add(metaData.getColumnName(column));
        }

        // data of the table
        Vector<Vector<Object>> data = new Vector<Vector<Object>>();
        while (rs.next()) {
            Vector<Object> vector = new Vector<Object>();
            for (int columnIndex = 1; columnIndex <= columnCount; columnIndex++) {

                vector.add(rs.getObject(columnIndex));

            }
            data.add(vector);
        }

        return new DefaultTableModel(data, columnNames);

    }

and my kaldSql looks like this.

public ResultSet Hentalleordreliste(Connection con){

    ResultSet Hentalleordreliste = null;

    try {
        PreparedStatement statement = con.prepareStatement("select varebestillinger.BestillingsID, " +
                "varebestillinger.LeverandoerID, "+
                "varebestillinger.BestillingsDato, varebestillinger.LeveringsDato, "+
                "varebestillinger.BestillingsStatus, varebestillinger.ModtagetAf, "+
                "varebestillinger.ModtagelsesDato, varebestillingsliste.Vare, " +
                "varebestillingsliste.Antal from varebestillinger left outer join " +
                "varebestillingsliste on  ListeID = BestillingsID");
                ResultSet rs = statement.executeQuery();


        while(rs.next()) {
            Hentalleordreliste = rs;
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return Hentalleordreliste;


}

and the GUI looks like this.

public GUIHentOrdre() {

    try {
        con = ks.connectNow();
    } catch (ClassNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (SQLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }



    ResultSet rs = ks.Hentalleordreliste(con);
    GUIOrdreHandler gh = new GUIOrdreHandler();
    JTable table = null;
    try {
        table = new JTable(gh.buildTableModel(rs));
    } catch (SQLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    Handler handler = new Handler();

    JPanel info = new JPanel();
    info.setLayout(new BorderLayout());
    LavBestilling = new JButton("Lav ny bestilling");
    TableModel ClassOrVoidOrModelNameReturnsTableModel = null;
    JScrollPane scroll = new JScrollPane(table);
    info.setSize(1024, 768);
    add(scroll, BorderLayout.CENTER);
    add(LavBestilling, BorderLayout.NORTH);

    LavBestilling.addActionListener(handler);

}

As told before, I can get the column name, I can create my table but cant get any data stored inside.

share|improve this question
1) For better help sooner, post an SSCCE. 2) Please use code formatting on code samples. – Andrew Thompson Dec 6 '12 at 5:20
Can you debug at data.add(vector); when you are adding data. Whether the data is successfully added or not. – Che Dec 6 '12 at 5:29
it never run while (rs.next()) { Vector<Object> vector = new Vector<Object>(); for (int columnIndex = 1; columnIndex <= columnCount; columnIndex++) { vector.add(rs.getObject(columnIndex)); } data.add(vector); } – user1880497 Dec 6 '12 at 5:47
in other words it doenst step into the while? – user1880497 Dec 6 '12 at 5:47
@user1880497 If it never runs in to the while loop then no data will be added. So the data list will be empty. – Che Dec 6 '12 at 5:55
show 2 more comments

marked as duplicate by mKorbel, Chris Gerken, DocMax, 一二三, dreamcrash Dec 7 '12 at 4:04

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Unless you're using a database that supports cursors, I would take a look hard look at

while(rs.next()) {
    Hentalleordreliste = rs;
}

Which would suggest that you're exhausted the result BEFORE you've tried to populate the table model...

share|improve this answer
What will be your suggesten then? – user1880497 Dec 6 '12 at 6:06
Get rid of the loop – MadProgrammer Dec 6 '12 at 6:10
If i remove the loop og type, i then get a error and if i type it in like this if(rs.next()) { Hentalleordreliste = rs; } i get same problem – user1880497 Dec 6 '12 at 6:13
What error? ... – MadProgrammer Dec 6 '12 at 6:29
If i remove the while and let the code look like this ResultSet rs = statement.executeQuery(); hentalleVare = rs; – user1880497 Dec 6 '12 at 6:46
show 7 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.