You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Exactly I've getting this error, and the error line was following as:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'employee WHERE dep_id=29' at line 1
1.Userdao:
public void deleteUser(int dep_Id) { try { PreparedStatement ps=connection.prepareStatement("delete from employee where dep_id=?"); ps.setInt(1, dep_Id); ps.executeUpdate(); } catch(SQLException e) { System.out.println(e); } }
2.Usercontroller.java:
if(action.equalsIgnoreCase("delete")) { int dep_Id=Integer.parseInt(request.getParameter("dep_Id")); dao.deleteUser(dep_Id); forward=EMPLOYEE_LIST; request.setAttribute("users",dao.getAllUsers()); //request.setAttribute("users",dao.getAll()); }
3.employeelist.jsp:
<tbody> <c:forEach items="${users}" var="user"> <tr> <td><c:out value="${user.dep_id}"/></td> <td><c:out value="${user.empName}"/></td> <td><c:out value="${user.empAddress}"/></td> <td><c:out value="${user.depName}"/></td> <td><a href="UserController?action=edit&dep_Id=<c:out value="${user.dep_id}"/>">Update</a></td> <td><a href="UserController?action=delete&dep_Id=<c:out value="${user.dep_id}"/>">Delete</a></td> </tr> </c:forEach> </tbody>
Could you explain what this has to do with Atlassian products?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there any book that inspired you and helped you better and broader perspective? Please drop their names. Would love to read 💙
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.