Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public void contaRegistros() throws SQLException{
  2. Connection conexao = DriverManager.getConnection("jdbc:mysql://localhost/bd_eclipse", "root", "etecjau" );
  3. PreparedStatement at = conexao.prepareStatement("SELECT COUNT(*) AS CONTADOR FROM JOGOS");
  4. ResultSet rs = at.executeQuery();
  5. while(rs.next()) {
  6. JOptionPane.showMessageDialog(null, "Registros: " + rs.getInt("CONTADOR"));}
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement