Home Answers Viewqa JSP-Servlet How to delete the row from the Database by using servlet

 
 


Ramanjaneyulu Manam
How to delete the row from the Database by using servlet
4 Answer(s)      2 years and 4 months ago
Posted in : JSP-Servlet

Dear Sir/Madam

I am trying to delete the one user data in the Oracle SQL server database by using servlet program (Tomcat server).

The given data is true then the user data to be delete from the database table.

Assume in Database table have 25 users details are there.

I am given 6th (some n th row)user details true values even though while loop is not terminate, it checking until the end of table and always given else black statement. So what is my mistake in while loop explain and please give the solution to me.

My programe is:

import java.lang.*;

import java.io.*;

import java.sql.*;

import java.util.*;

import javax.servlet.*;

import javax.servlet.http.*;

public class JdbcUpdateServlet extends HttpServlet

{

    String name,pas,cde;

    String un,up,co;

    boolean flag=false;

     public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException
     {

        try

        {
            response.setContentType("text/html;charset=UTF-8");

            PrintWriter out = response.getWriter();

            response.setContentType("text/html");

            un=request.getParameter("uname");

            up=request.getParameter("pwd");

            co=request.getParameter("code");

            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");

            Connection c=DriverManager.getConnection("jdbc:odbc:hari","raman","raman");

            Statement s=c.createStatement();

            s.executeQuery("select *from jduser");

            ResultSet rs=s.getResultSet();

            while(rs.next())

              {
                   name=rs.getString(1);
                   pas=rs.getString(2);
                   cde=rs.getString(3);
                    if(un.equals(name)&&up.equals(pas)&&co.equals(cde))
                    {
                        flag=true;
                        s.executeUpdate("delete from jduser where code='"+un+"'");
                        break;
                    }
              }
              if(flag==true)
                out.println(name+" User Data deleted successfully");
              else
                out.println("Sorry "+un+" user data is Not Available");

            s.close();
            c.close();
            out.close();
        }
        catch(IOException e)
        {
            System.out.println(e.getMessage());
        }
        catch(SQLException e)
        {
            System.out.println(e.getMessage());
        }
        catch(ClassNotFoundException e)
        {
            System.out.println(e.getMessage());
        }

    }
}
View Answers

March 2, 2011 at 3:06 PM


Please visit the following link:

Delete row from database using servlet


March 3, 2011 at 12:30 AM


In that link solution is not sufficient to my problem.

I want in while loop when if condition is true then only remove one user data and terminate the while loop.

Before it check the values one by one in the table if match then remove.


March 3, 2011 at 12:39 AM


Same problem with full details (HTML Page, Database table, Servlet Program) see this link

link text


July 22, 2011 at 10:42 PM


Try this All the best

deletetest.jsp

        < input type=checkbox name="check" value="<%=rsselqry.getString(2)%<" <  
        < input type="submit" value="Delete" <  

        **del.jsp**  
         d =request.getParameterValues("check");  

         if(d !=null)  
         {  
           for(int i=0;i<d.length;i++)  
           {  
           k=(String)d[i];  
           out.println(k);  
          }  


         }  

          stmtselqry.executeUpdate("delete from mail where name='"+k+"'");  









Related Pages:
How to delete the row from the Database by using servlet
How to delete the row from the Database by using servlet  Dear Sir...: Delete row from database using servlet   In that link solution... then the user data to be delete from the database table. Assume in Database table have
Delete a row from database by id
Delete a row from database by id  I m creating a small application using servlet. There is a form (index.jsp)having 10 fields on submitting the form...) for "DELETE" AND "UPDATE". On clicking delete which is hyper link that particular row
How to delete the row from the Database by using while loop in servlet
How to delete the row from the Database by using while loop in servlet ... server database by using Servlet program (Tomcat server). In Database table.... It is Urgent...  When you retrieve the data from the Database by using
delete row
delete row  how to delete row using checkbox and button in php...("sourabh", $link); $rows=mysql_query("select * from sonu"); $row=mysql... if(isset($_POST['delete'])) { for($i=0;$i<$row;$i++) { $delete
sqlite database delete row
sqlite database delete row  How to delete row from SQLite Database?    NSString *updateSQL = [NSString stringWithFormat: @"DELETE FROM aListDB WHERE id='%@'",details.ids
delete multiple row using checkbox
delete multiple row using checkbox  how to delete multiple row in a table which is connected to database using checkbox
delete multiple row using checkbox
delete multiple row using checkbox  how to delete multiple row in a table which is connected to database using checkbox
delete
delete  how delete only one row in the database using jsp.database... = conn.createStatement(); st.executeUpdate("DELETE FROM employee WHERE empid...); String query = "select * from employee"; st = con.createStatement
delete multiple row using checkbox
delete multiple row using checkbox  delete multiple row using... fields bookid,author and title in the database. 1) Create book.jsp <%@page...=null; st=conn.createStatement(); rs = st.executeQuery("select * from book"); int
JDBC ResultSet Delete Row Example
JDBC ResultSet Delete Row Example: Learn how to delete row using ResultSet. We are also used ResultSet object with update capability for delete rows from.... 6. Finally call deleteRow() ResultSet method for delete the current row form
delete an item from database
delete an item from database  how to delete an item from the database using jsp
delete row using id
delete row using id  package pkg2; import org.hibernate.Query; import... = "delete from Insurance insurance where id = 2"; Query query = sess.createQuery...()); } } } this is the code m using . Error is -query must begin with SELECT or FROM
delete row from a table in hibernate
delete row from a table in hibernate  is there method to delete row in a table using hibernate like save(-) to insert row
Delete a Specific Row from a Database Table
Delete a Specific Row from a Database Table   ..., and in this section we are going to do the same that is, how to delete a specific row... the connection we are going to delete a specific row from the table. If the row
Count Row - JSP-Servlet
Count Row  Hello all, Please I need your help on how to desplay the number of row(s) affected along with the affected row(s) in mssql database 2000 using java servlet and html form. Thanks for your good job!   Hi friend
Delete row and column from table through java code
will see how to delete row and column from given table through java code. Java code... Delete row and column from table through java code...) from stu_info"); rs.next(); // This sql query delete the row having
delete row from a table using hibernate
delete row from a table using hibernate  //code in java file String hql="delete from CONTACT c where ID=6"; Query query=session.createQuery... [delete from CONTACT] int i=query.executeUpdate
how to delete a row in sql without using delete command.
how to delete a row in sql without using delete command.  how to delete a row in sql without using delete command. thanks in advance
Hibernate delete a row error - Hibernate
Hibernate delete a row error  Hello, I been try with the hibernate delete example (http://www.roseindia.net/hibernate/hibernate-delete.shtml...(); //======================================= sess = fact.openSession(); String hql = "delete from Contact contact
JDBC Delete Row In Table Example
JDBC Delete Row In Table Example : In this tutorial we will learn how delete specific row from the table use mysql JDBC driver.This tutorial defined how one or more specific  row delete from table that follow any given condition
How to insert or delete records in MS access database using jsp - JSP-Servlet
How to insert or delete records in MS access database using jsp  Hi friends please provide me a solution that i insert or delete record from a database using java server pages. I used the microsoft access 2003 database. PlZ
Deleting a Row from SQL Table Using EJB
are going to delete a row from the SQL Table. Find out the steps given below that describes how to delete a particular row from the database table using EJB... Deleting a Row from SQL Table Using EJB
Deleting a Row from SQL Table Using EJB
to delete a row from the SQL Table. Find out the steps given below that describes how to delete a particular row from the database table using EJB. The steps... Deleting a Row from SQL Table Using EJB   
Deleting row and column from a table
Deleting row and column from a table  In this program ,we delete row... connection interface and java driver. After it we can delete row using "delete... the row having minimum ID.  statement.executeUpdate("delete from cellular where id
Delete and add row from Table View iPhone
Delete and add row from Table View iPhone In this tutorial will learn how to delete and also how to add row into the table view iPhone, with the help of edit... used earlier using reloadData method and in DeleteButtonAction will delete object
How to update,Delete database values from jtable cells ..
How to update,Delete database values from jtable cells ..  hello Sir... from database into jtable of a jpanel.. Now Sir, According to my need i have... to a particular cell will be updated into database and if we want to delete
how to display a table from database using servlet
how to display a table from database using servlet  how to display a table with values from servletpage   Hi Friend, Please go through the following link: http://roseindia.net/jsp/servlet-jsp-data-list.shtml Thanks
delete record
delete record  how to delete record using checkbox and button in php... deleted from the database. In the database we have created three fields bookid...=conn.createStatement(); for(int a=0;a<10;a++){ st.executeUpdate("delete from book where
Delete a Column from a Database Table
Delete a Column from a Database Table   ... to delete a column from a database table. We are not going to create a new table... the already created table in the specific database. Now if we want to delete
how to delete specified coloumn from database(MS Access) by using windows application
how to delete specified coloumn from database(MS Access) by using windows application  how to delete specified coloumn from database(MS Access) by using c# windows application
JDBC: Delete Record using Prepared Statement
JDBC: Delete Record using Prepared Statement In this section, we will discuss how to delete row of a table using Prepared Statements. Delete Record ... statement. You can delete any specific record under some condition using WHERE
Hibernate Delete Query
; In this lesson we will show how to delete rows from the underlying database using the hibernate. Lets first write a java class to delete a row from... (DeleteHQLExample.java), which we will delete a row from the insurance table using the query
Update delete perticular row from brower on link - Struts
Update delete perticular row from brower on link   how can update and delete perticular row from List of employee in brower format are ramesh... page with textbox update , if delete click then that row also delete from
Deleting Mysql Clob data using servlet
Deleting  Mysql Clob data using servlet In this Section, we will discuss about how to delete a Clob data from a database table using servlet. A CLOB... such as HTML. CLOB values are not stored as a part of the row of the database
insert and delete a row programmatically
insert and delete a row programmatically  How to insert and delete a row programmatically ? (new feature in JDBC 2.0
delete data from database - SQL
delete data from database  HOw to delete specific data from table> I want to delete one record from database. Thnx  Hi friend, -------------------------------------------- Visit for more information
How to Extract row from table view using JSP Code - Java Beginners
How to Extract row from table view using JSP Code  Hi Friends... problem exist with retrival of row from a table on click of link. Table Structure... Email 1 A B C D E F G Update Delete On click of Update, entire row
How to insert image in sql database from user using servlet
How to insert image in sql database from user using servlet  pls tell me accept image from user and insert image in sql server 2005 database using servlet and jsp
Delete image from folder - JSP-Servlet
Delete image from folder  Dear All, i used some coding... pass the userid, on the id basis write a delete statement and invoke the database... some time its burden for server. so dear friends i want to delete that image
ADD ROW - JSP-Servlet
ADD ROW  Hi Sir, How to use add row and delete row concept in jsp .  Hi Friend, Please visit the following link: http://www.roseindia.net/jsp/add-element.shtml Thanks
reading a csv file from a particular row
reading a csv file from a particular row  how to read a csv file from a particular row and storing data to sql server by using jsp servlet
How to delete and update from Jtable cell in swing app
How to delete and update from Jtable cell in swing app  Hii Sir... the database . I want to remove and delete the same row which is selected for the dletion... on delete button on selecting particular row which has to be deleted then last row
How to delete records from jtabel - Swing AWT
How to delete records from jtabel  hello I am using jtabel to diaplay recorda of file using abstruct data model. i used vector in model. It is working properly.but now i want to delete rows from tabel at a time one row
How to delete a table in mysql
How to Delete a Table in MySQL       Consider a situation where we need to delete a table from a database.  To delete a table from the database firstly we need
Arraylist from row values
Arraylist from row values  Hello, can anyone please help on how to make an arraylist from the row values of a particular column from a database...("select * from employee"); ArrayList<String> list=new ArrayList<
How to get the data from the database using Servlet or JSP program
How to get the data from the database using Servlet or JSP program  ... the problem   Get data from database using servlet Retrieve data from database using JSP Get data from database using JSP
to display single row from database and next to display other question - JSP-Servlet
to display single row from database and next to display other question  Hi all, I am using JSP with MYSQL backend. In my project we have 100 questions in database we have to display first question on clicking the button
How to Open Picture From M.S. Access Database using Java Servlet ?
How to Open Picture From M.S. Access Database using Java Servlet ?  ... Database But i m still not able to open this picture through Java using M.S. Access and i wants to open this Picture On Web Browser using Java Servlet anybody can
how to store the data in a array retrived from the database - JSP-Servlet
how to store the data in a array retrived from the database  hi... one tell me how to do it this using jsp. thankyou,  Hi nagaraj... of an employee in a row which is entered at different times which is stored
Using insert update and delete in the same servlet
Using insert update and delete in the same servlet  How to write insert, update and delete coding in the same servlet