Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-21-2007, 05:16 PM
Member
 
Join Date: Dec 2007
Posts: 7
jellyfish888 is on a distinguished road
I need help with my java servlet homework(add,edit and delete)
I have a homework in which our teacher asked us to write a code in which the user can add, delete and edit his wishlist...I can only do add and delete...I am sure that there is a lot of problem for edit so please help me to make it work...I am using database for this...

This is my html code:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Christmas Wishes</title> </head> <body> <h3>Place Your Christmas Wishes Here</h3> <form action="ChristmasWishlist" method=post> <table> <tr><th>Wish:</th><td><input type=text name=gift size=100></td></tr> <tr><th>Amount:</th><td><input type=text name=amount size=10></td></tr> <tr><th colspan=2><input type=submit name=submit value="Add"></th></tr> </table> </form> </body> </html>
This is my servlet:
Code:
import java.sql.Connection; import java.sql.DriverManager; public class ConnectionManager { protected Connection con; protected String driver = "com.mysql.jdbc.Driver"; String url = "jdbc:mysql://localhost:3306/"; String database = "WishList"; String user = "root"; String password = ""; /** Creates a new instance of ConnectionManager */ public ConnectionManager() { } public Connection logOn(){ try { Class.forName(driver).newInstance(); con = DriverManager.getConnection(url+database,user,password); } catch(Exception e){ System.out.print(e.getMessage()); } return con; } public void logOff(){ try { con.close(); } catch(Exception e){ e.printStackTrace(); } } }
This is my other servlet:
Code:
import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.sql.*; /** * Servlet implementation class for Servlet: ChristmasWishlist * */ public class ChristmasWishlist extends javax.servlet.http.HttpServlet implements javax.servlet.Servlet { static final long serialVersionUID = 1L; /* * Connect to the database */ /* * (non-Java-doc) * * @see javax.servlet.http.HttpServlet#HttpServlet() */ public ChristmasWishlist() { super(); } /* * (non-Java-doc) * * @see javax.servlet.http.HttpServlet#doGet(HttpServletRequest request, * HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub process(request, response); } /* * (non-Java-doc) * * @see javax.servlet.http.HttpServlet#doPost(HttpServletRequest request, * HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub process(request, response); } protected void process(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); java.io.PrintWriter out = response.getWriter(); out.println("<html><title>List of All Your Wishes</title><body>"); //check if you are getting the right values, comment out once the program is working //line below will work only for java 5 up java.util.Enumeration e = request.getParameterNames(); while (e.hasMoreElements()) { String gift = e.nextElement().toString(); out.println("<br>" + gift + " - " + request.getParameter(gift)); } if (request.getParameter("submit") != null) { if (!request.getParameter("submit").isEmpty()) { if (request.getParameter("submit").equals("Add")) { if (!request.getParameter("gift").isEmpty()) { out.println(addChristmasWishlist(request .getParameter("gift"))); } else { out.println("<p>Nothing to do"); } } else if(request.getParameter("submit").equals("Delete")) { delChristmasWishlist(Integer.parseInt(request.getParameter("id"))); } else if(request.getParameter("submit").equals("Delete")) { out.println("<p>Nothing to do"); } } } else { out.println("<p>empty"); } out.println("<p><a href=wish.html>Add again</a>"); ResultSet rst = null; try { rst = viewChristmasWishlist(); int count = 1; out.println("<table><tr><th colspan=2>ChristmasWishlist</th></tr>"); while(rst.next()) { out.println("<tr><td><b>"+count+".</b></td><td>"+rst.getString("gift")+"</td>" + "<td><a href=ChristmasWishlist?id="+rst.getInt("id")+"&submit=Edit>Edit</a.</td>"+ "<td><a href=ChristmasWishlist?id="+rst.getInt("id")+"&submit=Delete>Delete</a.</td></tr>"); count++; } out.println("</table>"); } catch(Exception e2) { } out.println("</body></html>"); } public String addChristmasWishlist(String wish) { try { ConnectionManager con = new ConnectionManager(); Statement stmt = con.logOn().createStatement(); String msg = ""; String sql = "insert into wishes set gift='" + wish.replaceAll("\'", "\\\'") + "'"; if (stmt.execute(sql)) { msg = "Insert failed"; } else { msg = "Added successfully"; } con.logOff(); return msg; } catch (SQLException e) { return "Add failed. SQL error " + e.getMessage(); } catch (java.lang.NullPointerException ne) { return "<?p>Null error: " + ne.getMessage(); } } public String delChristmasWishlist(int id) { try { ConnectionManager con = new ConnectionManager(); Statement stmt = con.logOn().createStatement(); String msg = ""; String sql = "delete from wishes where id="+id; if (stmt.execute(sql)) { msg = "Delete failed"; } else { msg = "Delete successfully"; } con.logOff(); return msg; } catch (SQLException e) { return "Add failed. SQL error " + e.getMessage(); } catch (java.lang.NullPointerException ne) { return "<p>Null error: " + ne.getMessage(); } } public String editChristmasWishlist(String wish) { try { ConnectionManager con = new ConnectionManager(); Statement stmt = con.logOn().createStatement(); String msg = ""; String sql = "update from wishes where gift="+wish; if (stmt.execute(sql)) { msg = "update failed"; } else { msg = "update successfully"; } con.logOff(); return msg; } catch (SQLException e) { return "Add failed. SQL error " + e.getMessage(); } catch (java.lang.NullPointerException ne) { return "<p>Null error: " + ne.getMessage(); } } public ResultSet viewChristmasWishlist() { ResultSet rst = null; try { ConnectionManager con = new ConnectionManager(); Statement stmt = con.logOn().createStatement(); String msg = ""; String sql = "select * from wishes"; rst = stmt.executeQuery(sql); } catch (SQLException e) { } catch (java.lang.NullPointerException ne) { } return rst; } }
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 12-24-2007, 06:10 AM
Member
 
Join Date: Dec 2007
Posts: 7
jellyfish888 is on a distinguished road
please help me with this...you can just concentrate on edit since I was able to do add and delete...please and thank you...
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 12-24-2007, 10:21 AM
Member
 
Join Date: Dec 2007
Posts: 7
jellyfish888 is on a distinguished road
This is the dit part which I think have a lot of problem...
Code:
public String editChristmasWishlist(String wish) { try { ConnectionManager con = new ConnectionManager(); Statement stmt = con.logOn().createStatement(); String msg = ""; String sql = "update from wishes where gift="+wish; if (stmt.execute(sql)) { msg = "update failed"; } else { msg = "update successfully"; } con.logOff(); return msg; } catch (SQLException e) { return "Add failed. SQL error " + e.getMessage(); } catch (java.lang.NullPointerException ne) { return "<p>Null error: " + ne.getMessage(); } }

Please help me make this code work...
Bookmark Post in Technorati
Reply With Quote
  #4 (permalink)  
Old 12-26-2007, 07:42 AM
Senior Member
 
Join Date: Jun 2007
Location: Bali, ID
Posts: 100
wsaryada is on a distinguished road
What is the actual problem you get from your code? can you tell us?

What I am guessing right now is could be you are missing a quote in your sql update command. Shouldn't it be something like:

Code:
"update from wishes where gift='" + wish + "'";
__________________
Website:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
- Blog:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I delete/uninstall older versions of Java? LudwigKarl New To Java 3 03-19-2008 11:23 AM
I need help with my java servlet homework(average) jellyfish888 Java Servlet 2 12-23-2007 10:57 PM
Help with my java servlet homework jellyfish888 Java Servlet 2 12-21-2007 06:41 PM
how to edit lines. jason27131 New To Java 1 08-01-2007 05:41 AM
Doubt in edit and delete methods ai_2007 Advanced Java 3 07-01-2007 12:40 PM


All times are GMT +3. The time now is 09:09 PM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org