前提・実現したいこと
SQL文にてselect文を実行した際に
java.lang.ArrayIndexOutOfBoundsException: 6 >= 6
とエラーが表示され、登録してあるデータの表示が出来ずにいます…
発生している問題・エラーメッセージ
java.lang.ArrayIndexOutOfBoundsException: 6 >= 6
該当のソースコード
//表示 JButton btnOpen = new JButton("表示"); btnOpen.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { // TODO 自動生成されたメソッド・スタブ Connection con = null; PreparedStatement pstmt = null; ResultSet rs = null; try { //データベースに接続 con = DBconect.getConnection(); //表示データ存在チェック //表示データ存在チェック int errorCode = Validate.ckExistsData1(con); if(errorCode != Validate.getErrCode0()) { //エラーダイアログ表示 JOptionPane.showMessageDialog(frame, Validate.getErrMsg(errorCode)); return; } //表示SQL文作成 String mySql = "select * from book.tbl_book"; //ステートメントオブジェクトを作成 pstmt = con.prepareStatement(mySql); //検索するSQL実行 rs = pstmt.executeQuery(); //表のヘッダー部を作成 DefaultTableModel tableModel = new DefaultTableModel(columnName, 0); rs.last(); tableModel.setRowCount(rs.getRow()); rs.beforeFirst(); int i = 0; while(rs.next()) { tableModel.setValueAt(java.lang.String.format("%03d", rs.getInt("BookNo")), i, 0); tableModel.setValueAt(rs.getString("title"), i, 1); tableModel.setValueAt(rs.getString("author"), i, 2); tableModel.setValueAt(rs.getString("publisher"), i, 3); tableModel.setValueAt(rs.getString("ISBN"), i, 4); tableModel.setValueAt(rs.getString("releaseday"), i, 5); tableModel.setValueAt(rs.getString("status"), i, 6); i++; } //表を描画 frame.getContentPane().add(scrollPane); table.setModel(tableModel); table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); table.setColumnSelectionAllowed(false); table.setRowSelectionAllowed(true); table.getColumnModel().getColumn(0).setMinWidth(150); table.getColumnModel().getColumn(1).setPreferredWidth(150); table.getColumnModel().getColumn(1).setMinWidth(1); scrollPane.setViewportView(table); scrollPane.repaint(); //コンボボックスの設定 String[] dataItem = {"-", "貸出中", "返却"}; JComboBox sutatsComboBox = new JComboBox(dataItem); TableColumn sutatsColumn = table.getColumnModel().getColumn(6); sutatsColumn.setCellEditor(new DefaultCellEditor(sutatsComboBox)); } catch(Exception ex) { System.out.println(ex); }finally { try { //実行結果をクローズ if(rs != null) { rs.close(); } if(pstmt != null) { pstmt.close(); } if(con != null) { con.close(); } } catch(SQLException se) { //何もしない } } } }); btnOpen.setBounds(370, 86, 105, 40); contentPane.add(btnOpen);
補足情報(FW/ツールのバージョンなど)
テーブルの情報は以下になります
テーブル
CREATE TABLE book.tbl_book ( BookNo INT NOT NULL auto_increment, title VARCHAR(30) NOT NULL, author VARCHAR(20) NOT NULL, publisher VARCHAR(10) NOT NULL, ISBN CHAR(13) NOT NULL, releaseday CHAR(8) NOT NULL, status VARCHAR(10) NOT NULL, CONSTRAINT PRIMARY KEY (BookNo) );
回答2件
あなたの回答
tips
プレビュー