0

データベースから多数の行を取得して JFrame に JTable を設定しようとしていますが、最初の行/エントリのみを取得しています (常に行 1)。家のリスト+テーブルに保存された詳細

 public static DefaultTableModel buildTableModel(ResultSet rs)
            throws SQLException {

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

        // names of columns
        Vector<String> columnNames = new Vector<String>();
        int columnCount = metaData.getColumnCount();
        for (int column = 1; column <= columnCount-1; 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);
    }

テーブルの最初の行だけでなく、すべての行を印刷するにはどうすればよいですか?

public void displaySaleProperties() throws SQLException{

    Connection conn = null;
    try {       
        conn = DriverManager.getConnection(CONN_STRING, USERNAME, PASSWORD);
        System.out.println("Connected to database.");       

         // The Connection is obtained

        Statement Stmt = (Statement) conn.createStatement();
    //  Stmt.execute(createPropertyTable);

        ResultSet rs = Stmt.executeQuery("select * from PropertySale");

        // It creates and displays the table
        JTable table = new JTable(buildTableModel(rs));
        table.setPreferredSize(new Dimension(1150,17));
    //    JOptionPane.showMessageDialog(null, new JScrollPane(table));

        final JPanel panelOne = new JPanel();
        panelOne.setVisible(true);
        panelOne.setBackground(Color.LIGHT_GRAY);
        // JFRAME
        final JFrame topFrame = new JFrame();
        topFrame.setSize(1200, 300);
        topFrame.setLocationRelativeTo ( null );
        topFrame.setVisible(true);
        topFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

        // PUT TOGETHER
        topFrame.add(panelOne);

        panelOne.add(table);
        panelOne.revalidate();
        panelOne.repaint();

        // Closes the Connection

    } catch (SQLException e) {
        System.err.println("Cannot connect to database." + e);
    } finally {
    if(conn != null){
        conn.close();   
      }
    }   
}
4

1 に答える 1