hi i'm having problems with my search logic if (rs!=null){ while(rs.next()) { } } else { out.println("no results") } it seem that if no results from databases it woudn't display "no results" can anyone pls help me.. thanx
The first result is always empty, so the coe you are looking for is:
You could get more specific information in the JDBC forum. Dave.
Pranit Saha
Ranch Hand
Joined: Sep 09, 2001
Posts: 130
posted
0
if(rs!=null) { if(rs.next()) { //display result } else { //Not exist } } Hope this will work fine.. Pranit.
Originally posted by Jardel Tan: hi i'm having problems with my search logic if (rs!=null){ while(rs.next()) { } } else { out.println("no results") } it seem that if no results from databases it woudn't display "no results" can anyone pls help me.. thanx
As you can see, there's more than one way to do it. I like this one:
Customer surveys are for companies who didn't pay proper attention to begin with.
java alltheway
Greenhorn
Joined: Oct 03, 2001
Posts: 5
posted
0
I use this to find out if there's data back from database. This will show you how many rows are in the resultset. int rowcnt=0; rs.last(); rowcnt = rs.getRow();