Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

जावा mysql पंक्तियों की संख्या गिनें

नीचे दिए गए कोड को आज़माएं

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

नीचे त्रुटि थी

  1. public void num() throws Exception {

    होना चाहिए

    public int num() throws Exception {

  2. कुल पंक्तियों की गणना के लिए आपको क्वेरी का उपयोग करना चाहिए select count(*) from testdb.emg

किसी भी समस्या के लिए मुझे बताएं।



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL में INT(5) का क्या अर्थ है?

  2. `रैंड ()` का उपयोग `होने` के साथ

  3. अंतिम इमोजी एन्कोडिंग योजना

  4. PHP MYSQL PDO स्तंभों का योग

  5. MySQLdb कनेक्शन की समस्या