Updating Records Using PreparedStatement

From Java Example Source Code

Jump to: navigation, search

Contents

[edit] Overview - Updating Records Using PreparedStatement

This Java example program shows how to update records using PreparedStatemen.

[edit] Java Source Code

  • Package: example.jdbc.preparedstatement
  • File: UpdateRecordsUsingPreparedStatement.java
package example.jdbc.preparedstatement;
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
 
public class UpdateRecordsUsingPreparedStatement {
    public static Connection getConnection() throws Exception {
	String driver = "oracle.jdbc.driver.OracleDriver";
	String url = "jdbc:oracle:thin:@localhost:1521:databaseName";
	String username = "name";
	String password = "password";
	Class.forName(driver);
	Connection conn = DriverManager.getConnection(url, username, password);
	return conn;
    }
 
    public static void main(String[] args) throws Exception {
	Connection conn = null;
	PreparedStatement pstmt = null;
	try {
	    conn = getConnection();
	    String query = "update dept set DEPT_LOC = ? where DEPT_NUM = ? ";
	    pstmt = conn.prepareStatement(query); // create a statement
	    pstmt.setString(1, "deptLocation"); // set input parameter 1
	    pstmt.setInt(2, 1001); // set input parameter 2
	    pstmt.executeUpdate(); // execute update statement
	} catch (Exception e) {
	    e.printStackTrace();
	    System.exit(1);
	} finally {
	    pstmt.close();
	    conn.close();
	}
    }
}

[edit] What Result You Can Get

Coming soon... Run the program, you will get:

[edit] Required External Libraries and/or Files for this Java Example

In order to run this Java example, one of the following libraries may be required: In order to run this example program, one of the following libraries may be required:


[edit] How to Run this Java Example Program

We recommend running this Java example program with Eclipse.

For assistance in working with Eclipse, please see How to Run Java Program with Eclipse.

It's fairly easy.



[edit] Question & Answer

Any question?

Click edit and post your question or answer here.


Personal tools