Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

java mysql menghitung jumlah baris

Coba kode di bawah ini

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

Di bawah ini adalah kesalahan

  1. public void num() throws Exception {

    seharusnya

    public int num() throws Exception {

  2. Untuk menghitung total baris, Anda harus menggunakan kueri select count(*) from testdb.emg

Beri tahu saya jika ada masalah.



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. enum('ya', 'tidak') vs tinyint -- yang mana yang digunakan?

  2. Bagaimana cara menghapus file ketika catatan dihapus?

  3. mySQL groupconcat mengembalikan BLOB xxxB / Kib

  4. cara menambahkan kolom baru setiap kali saya menjalankan program python

  5. Periksa apakah string berisi angka