Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions? | Software Development
 

Update Records using Prepared Statement

In this JDBC tutorial we are going to learn about the process of updating the records by using the PreparedStatement.

Update Records using Prepared Statement

                         

The JDBC provides you the facility for updating the records. In this JDBC tutorial we are going to learn about the process of updating the records by using the PreparedStatement.  Here arise a question, what is updating the records. In the case of relational database management system (RDBMS) we use the SQL "UPDATE" statement for updating the data in one or more records. See brief description below: 

Description of program:

In this program we are going to establish the connection with MySQL database by using the JDBC driver. When the connection has been established then we pass a SQL statement with some conditions in it for selecting the specific records and pass this query in the prepareStatement method. This method returns an object of PreparedStatement. If the query gets executed then give a message "Updating Successfully!" otherwise it displays "SQL statement is not executed!".

Here is the code of program:

import java.sql.*;

public class UpdatesRecords{
  public static void main(String[] args) {
    System.out.println("Updates Records Example through Prepared Statement!");
    Connection con = null;
    try{
      Class.forName("com.mysql.jdbc.Driver");
      con = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/jdbctutorial","root","root");
      try{
        String sql = "UPDATE movies SET title = ? WHERE year_made = ?";
        PreparedStatement prest = con.prepareStatement(sql);
        prest.setString(1,"Sanam We wafafa");
        prest.setInt(2,2005);
        prest.executeUpdate();
        System.out.println("Updating Successfully!");
        con.close();
      }
      catch (SQLException s){
        System.out.println("SQL statement is not executed!");
      }
    }
    catch (Exception e){
      e.printStackTrace();
    }
  }
}

Download this example.

Database Table: movies

title year_made
alam ara 1945
Karan 2005
Karan 2005
Bagal bali 2002
Raja Hindistani 1998
Diwar 1980
Nadia ke par 1975

Output of program:

C:\vinod\jdbc\jdbc\PreparedStatement>javac UpdatesRecords.java

C:\vinod\jdbc\jdbc\PreparedStatement>java UpdatesRecords
Updates Records Example through Prepared Statement!
Updating Successfully!

After executing the program:

Database Table: movies

title year_made
alam ara 1945
Sanam We wafafa 2005
Sanam We wafafa 2005
Bagal bali 2002
Raja Hindistani 1998
Diwar 1980
Nadia ke par 1975

                         

» View all related tutorials
Related Tags: c database ide table data join script io tables ip vi this opera id tab ie example with nat to

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

1 comments so far (
post your own) View All Comments Latest 10 Comments:

Thank..!
This is the Very good Example for Updatting the
Records..using the Prepared Statement...

Reading this Example I sort out My Problem..

With Regards,
Amol Rai
98607439..

Posted by Amol Rai on Tuesday, 09.23.08 @ 13:36pm | #80621

 
Tell A Friend
Your Friend Name

 

 
Recently Viewed
Software Solutions
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.