Ret

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

private void RetrieveData () { try { int row = tmodel.getRowCount(); while(row > 0) { row--; tmodel.removeRow(row); } //execute query ResultSet rs = st.

executeQuery("Select * from MediInfo") ; //get metadata ResultSetMetaData md = rs.getMetaData(); int colcount = md.getColumnCount(); Object[] data = new Object[colcount]; //extracting data while (rs.next()) { for (int i=1; i<=colcount; i++) { data[i-1] = rs.getString(i); } tmodel.addRow(data); } } catch(Exception e) {System.out.println(e); } }

You might also like