JDBC update : SQL Update : Database SQL JDBC : Java examples (example source code) Organized by topic

Java
C++
Java Home »  Database SQL JDBC   » [  SQL Update  ]  Screenshots 
 



JDBC update

/*

Database Programming with JDBC and Java, Second Edition
By George Reese
ISBN: 1-56592-616-1

Publisher: O'Reilly

*/


import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;

/**
 * Example 3.3
 */
public class Update {
  public static void main(String args[]) {
    Connection con = null;

    if (args.length != 2) {
      System.out.println("Syntax: <java UpdateApp [number] [string]>");
      return;
    }
    try {
      String driver = "com.imaginary.sql.msql.MsqlDriver";

      Class.forName(driver).newInstance();
      String url = "jdbc:msql://carthage.imaginary.com/ora";
      con = DriverManager.getConnection(url, "borg""");
      Statement s = con.createStatement();
      String test_id = args[0];
      String test_val = args[1];
      int update_count = s
          .executeUpdate("INSERT INTO test (test_id, test_val) "
              "VALUES(" + test_id + ", '" + test_val + "')");

      System.out.println(update_count + " rows inserted.");
      s.close();
    catch (Exception e) {
      e.printStackTrace();
    finally {
      if (con != null) {
        try {
          con.close();
        catch (SQLException e) {
          e.printStackTrace();
        }
      }
    }
  }
}

           
       
Related examples in the same category
1.  Create Coffees table
2.  JDBC Update logic
3.  SQL Batch
4.  Batch Update Batch Update
5.  Get Metadata from prepareStatement
6.  Batch Update: transation Batch Update: transation
7.  Return generated keys








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.