sql >> Databasteknik >  >> RDS >> Mysql

java mysql antal rader

Prova nedanstående kod

 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) {
}

Nedan fanns fel

  1. public void num() throws Exception {

    borde vara

    public int num() throws Exception {

  2. För att räkna totalt antal rader bör du använda frågan select count(*) from testdb.emg

Låt mig veta om du har problem.



  1. Anropar ett PHP-skript från en MySQL-utlösare

  2. Fråga för att växla booleskt värde i MySQL

  3. Mysql-behörighetsfel med "ladda data"

  4. PHP SQL STMT VÄLJ flera LIKE? är det möjligt?