私は1つのJavaアプリを開発しようとしました。ここではmysqlデータベースから情報を取得しています。私のコードは:
public class RetailerWs {
public int data(){
int count=0;
try {
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/pro","root","");
PreparedStatement statement = con.prepareStatement("select * from orders where status='Q' AND MONTH(date) = MONTH(CURDATE()) AND YEAR(date) = YEAR(CURDATE())");
ResultSet result = statement.executeQuery();
while(result.next()) {
// Do something with the row returned.
count++; //if the first col is a count.
}
}
catch(Exception exc){
System.out.println(exc.getMessage());
}
return count;
}
}
他のクラスは:
public class Demo {
public static void main(String[] args){
RetailerWs obj = new RetailerWs();
System.out.println(obj.data());
}
}
ここでクエリをチェックする必要があり、カウント値の表示は正常です。しかし、クエリに一致する項目がゼロであるということは、出力が空白で表示されることを意味します。しかし、表示0である必要があります。空白の画面を表示しないでください。私のやり方はどうですか。