Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Display database value in jsp page
12-14-2011, 04:13 PM
Post: #1
Its My Birthday! Display database value in jsp page
I get lot of queries to have a simple example to Display database value in jsp page.
So i provide the code below for the users benefit.Here i use the database as mysql,if you are using different database change the connection coding accordingly.To work this example in tomcat create a web.xml file and place this coding file inside the folder


<%@ page import="java.sql.*"%>
<%
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost/way2start","root","root");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("select * from one");
while(rs.next())
{
out.println("<html>");

out.println("<body>");
out.println("<table bgcolor='green'>");
out.println("<tr>");
out.println("<td>");
out.println(rs.getString(1));
out.println("</td>");
out.println("</tr>");
out.println("</table>");
out.println("</body>");
out.println("</html>");
}
%>

Tutorial Provided by In order to view links, you must have to reply to this thread. Visit for More Tutorials


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
Lightbulb compare current time with database retrieved time in jsp rajasri 0 73 12-19-2011 09:47 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
Sad how to import a csv file values in to database using jsp rajasri 0 399 12-14-2011 04:51 PM
Last Post: rajasri
Video simple update query in jsp page rajasri 0 357 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 Getting number of rows in jsp page rajasri 0 233 12-13-2011 04:23 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

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