To Get the Number of Matches Found in the Database
JiaPei Jen
Ranch Hand
Joined: Nov 19, 2000
Posts: 1309
posted
0
I am working a database search by supplying a 'memberName'. There is a field in the data table called 'message_receiver'. I want to count the number if the 'memberName' and the 'messag_receiver' is a match and return the number. How do I do it?
Mukesh Netedge
Greenhorn
Joined: Apr 17, 2004
Posts: 10
posted
0
Hi JiaPei Jen , It seems you need count of the result set returns from the query according to the parameter passed. Try the following query: String query = "SELECT count(*****) as countNo FROM message_thread WHERE message_receiver = '" + memberName + "'"; or String query = "SELECT count(*****) as countNo FROM message_thread WHERE message_receiver like '%" + memberName + "%'"; Then usinf your resultset retrieve the first element as String noOfMembers=rs.getString("countNo") Hope it will hepl you. Mukesh
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: To Get the Number of Matches Found in the Database