Nadaj nazwę kolumnie:
ResultSet rs= stmt.executeQuery("select count(name) AS count_name from db.persons where school ='"+sch+"'");
if (rs.next()) {
int count= rs.getInt("count_name");
}
Możesz również podać numer indeksu kolumny (w przypadku, gdy nie chcesz modyfikować zapytania), który jest oparty na 1. Sprawdź ResultSet#getInt(int columnIndex)
:
ResultSet rs= stmt.executeQuery("select count(name) from db.persons where school ='"+sch+"'");
if (rs.next()) {
int count= rs.getInt(1);
}
Poza tym byłoby lepiej, jeśli użyjesz PreparedStatement
do wykonywania zapytań, ma wiele zalet w porównaniu ze zwykłym Statement
jak wyjaśniono tutaj:Różnica między oświadczeniem a przygotowanym oświadczeniem
. Twój kod będzie wyglądał tak:
String sql = "select count(name) AS count_name from db.persons where school = ?";
PreparedStatement pstmt = con.prepareStatement(sql);
pstmt.setString(1, sch);
ResultSet rs = pstmt.executeQuery();
if (rs.next()) {
int count = rs.getInt("count_name");
}