Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. try {
  2.  
  3. Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/photocopy","root","");
  4.  
  5. String sql="SELECT * FROM `prices`";
  6. PreparedStatement pstmt = conn.prepareStatement(sql);
  7. ResultSet rs =pstmt.executeQuery();
  8.  
  9. while(rs.next()){
  10.  
  11.  
  12. String pathayo = rs.getString("color");
  13.  
  14.  
  15.  
  16. jComboBox3.addItem(pathayo);
  17.  
  18.  
  19.  
  20.  
  21. }
  22.  
  23.  
  24. } catch (Exception e) {
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement