private int fillTable(IRowSet rs) throws SQLException { // TODO Auto-generated method stub DecimalFormat df = new DecimalFormat("0.00"); // kDTable1.removeRows(); while (rs.next()) { IRow row = kDTable1.addRow(); row.getCell("company").setValue(rs.getString("company")); row.getCe...