サーブレットプログラムで、関数を含むDAOクラスを作成しました。このクラスは、Oracleクエリの実行によって生成された特定の値を返したいと考えています。次のようなことを試みました。
public int timeofdayafternoonthsmon(Getset g) throws ClassNotFoundException, SQLException {
// TODO Auto-generated method stub
Connection con=Dbconnection.getConnection();
String userid=g.getuserid();
PreparedStatement pstmt=con.prepareStatement("select count(timeofday) from mealdb where timeofday=? and userid=?");
pstmt.setString(1,"Afternoon");
pstmt.setString(2,userid);
int no=pstmt.executeUpdate();
System.out.println(""+no);
return no;
}
しかし、問題は、(おそらく)成功として1を返すことです。しかし、私はそれがこのクエリを実行した結果を返すことを望みます。