Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
simple update query in jsp page
12-14-2011, 04:06 PM (This post was last modified: 12-14-2011 04:14 PM by rajasri.)
Post: #1
Video simple update query in jsp page
Today you are going to learn simple update query in jsp page
Using Query in jsp page needs certain modifications See the simple code below you can able to update the values in jsp page.Here i have assigned the values to be updated next tutorial we can update using parameter.


<%@ page import="java.sql.*"%>
<%
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost/way2start","root","root");
Statement st=con.createStatement();
Statement st1=con.createStatement();
String two="sample3";
st.executeUpdate("update one set name='"+two+"' where (name='sample1')");
ResultSet rs=st1.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
Rainbow Simple Servlet Program mukesh1234 0 57 01-30-2012 12:32 AM
Last Post: mukesh1234
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
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
Video How to use batch update in java and jsp rajasri 0 202 12-13-2011 04:08 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