Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Getting number of rows in jsp page
12-13-2011, 04:23 AM
Post: #1
Star Getting number of rows in jsp page
There is time needed where we want to know how many rows are there in table.
For that we want to check the database by providing select * from table command instead we can get no of rows in jsp page itself.
Create a table named users with one column name for ex

create table users(name varchar(100));
insert into users values('http://s2sgateway.com');
insert into users values('http://sitepromoter.co.cc');

Then save the following code in a file named count.jsp and create a web.xml file with in web-inf folder.

<%@ page import="java.sql.*" %>
<%
int count=0;
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con= DriverManager.getConnection("jdbc:mysql://localhost/s2sgateway", "username", "password");
PreparedStatement p = con.prepareStatement("");
ResultSet rs = p.executeQuery("select count(*) from users");
while (rs.next()){
count = rs.getInt(1);
}
out.println("The Total Count is " + count);
}
catch(Exception e){
out.println("The exception is " + e);
%>

Now run the program you will get count as 2 any doubt ask us happy coding
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies Views: Last Post
Big Grin In Tomcat jsp page is not refreshing rajasri 0 62 12-19-2011 10:41 PM
Last Post: rajasri
Thumbs Up Display combo box value/Database value on same JSP page rajasri 0 73 12-19-2011 09:27 PM
Last Post: rajasri
Its My Birthday! Display database value in jsp page rajasri 0 239 12-14-2011 04:13 PM
Last Post: rajasri
Video simple update query in jsp page rajasri 0 356 12-14-2011 04:06 PM
Last Post: rajasri
Shocked update using parameters in jsp page rajasri 0 164 12-14-2011 04:04 PM
Last Post: rajasri
Big Grin using session to protect a page in jsp rajasri 0 216 12-13-2011 04:47 AM
Last Post: rajasri
Video Display current time and date in your Jsp page rajasri 0 383 12-13-2011 04:26 AM
Last Post: rajasri
Star Read data from xml and show in jsp page project download rajasri 0 325 12-13-2011 04:00 AM
Last Post: rajasri
Bug Print current time using java in jsp page rajasri 0 240 12-13-2011 03:50 AM
Last Post: rajasri
  Redirect page using jsp to another page admin 0 429 11-28-2011 11:19 PM
Last Post: admin

Forum Jump:


User(s) browsing this thread: 1 Guest(s)


WE will share important jobs and updates on facebook so like us to get updates