Display

You might also like

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

public void LoadNameOnlyData() throws ClassNotFoundException{

try{
BDConnection.init();
com.mysql.jdbc.Connection con = BDConnection.getConnection();
PreparedStatement ps;
ResultSet rs;
ps = con.prepareStatement("Select * from student");
rs = ps.executeQuery();
while(rs.next()){
this.jTable1.addRowSelectionInterval(WIDTH, WIDTH);
}
}catch(SQLException e){
System.out.println(e);
}
}

You might also like