Hãy thử mã bên dưới
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) {
}
Dưới đây là lỗi
-
public void num() throws Exception {
nên được
public int num() throws Exception {
-
Để đếm tổng số hàng, bạn nên sử dụng truy vấn
select count(*) from testdb.emg
Hãy cho tôi biết nếu có bất kỳ vấn đề gì.