Mysql
 sql >> Datenbank >  >> RDS >> Mysql

java mysql count anzahl der zeilen

Versuchen Sie es mit dem folgenden Code

 public int num() throws Exception {
 try {
 // This will load the MySQL driver, each DB has its own driver
 Class.forName("com.mysql.jdbc.Driver");
 // Setup the connection with the DB
 connect = DriverManager.getConnection("jdbc:mysql://localhost/testdb?"
 + "user=root&password=");

 // Statements allow to issue SQL queries to the database
 statement = connect.createStatement();
 resultSet = statement.executeQuery("select count(*) from testdb.emg");

 while (resultSet.next()) {
 return resultSet.getInt(1);
 }
} catch (Exception e) {
}

Unten waren Fehler

  1. public void num() throws Exception { aus

    sollte

    sein

    public int num() throws Exception { aus

  2. Um die Gesamtzeilen zu zählen, sollten Sie die Abfrage select count(*) from testdb.emg verwenden

Lassen Sie es mich wissen, wenn es Probleme gibt.