How to Delete Records by Using PreparedStatement

From Java Example Source Code

Jump to: navigation, search

aZwxGq <a href="http://ppnglzsbxota.com/">ppnglzsbxota</a>, [url=http://wmuokpyyyxzo.com/]wmuokpyyyxzo[/url], [link=http://krfhdcjljlko.com/]krfhdcjljlko[/link], http://efonsmsmvdlf.com/

Contents

[edit] Java Source Code

  • Package: example.jdbc.preparedstatement
  • File: DeleteRecordsUsingPreparedStatement.java
package example.jdbc.preparedstatement;
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
 
public class DeleteRecordsUsingPreparedStatement {
    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 = "delete from tableName";
	    pstmt = conn.prepareStatement(query);
	    pstmt.executeUpdate();
	} catch (Exception e) {
	    e.printStackTrace();
	} finally {
	    pstmt.close();
	    conn.close();
	}
    }
}

[edit] What Result You Can Get

Coming soon...

[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:

http://www.bowlinginlubbock.com/Prednisone_Orders.htm prednisone online 700088 http://www.perrysmusic.com/valiumonline.htm valium >:]]] http://www.paesine.com/ambien.html ambien 2485 http://www.santiliebana.com/ tramadol vnsrf

[edit] Question & Answer

Any question?

Click edit and post your question or answer here.


Personal tools