The Artima Developer Community
Sponsored Link

Java Buzz Forum
JDBC Batch Processing [PreparedStatement] Demo

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Ram N

Posts: 2777
Nickname: ramram
Registered: Jul, 2014

Ram N is Java Programmer
JDBC Batch Processing [PreparedStatement] Demo Posted: Aug 1, 2014 9:45 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Ram N.
Original Post: JDBC Batch Processing [PreparedStatement] Demo
Feed Title: JAVA EE
Feed URL: http://ramj2ee.blogspot.com/feeds/posts/default?alt=rss
Feed Description: This blog has viedo tutorials and Sample codes related to below Technologies. 1.J2EE 2.Java 3.Spring 4.Hibernate 5.Database 6.Oracle 7.Mysql 8.Design Patterns
Latest Java Buzz Posts
Latest Java Buzz Posts by Ram N
Latest Posts From JAVA EE

Advertisement



Click the below Image to Enlarge

JDBCBatchProcessDemo Project Dir Structure
JDBC Batch Processing [PreparedStatement] Demo
JDBC Batch Processing [PreparedStatement] Demo

JDBCBatchProcess.java
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;

public class JDBCBatchProcess
{
// JDBC driver name and database URL
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost:3306/world";

// Database credentials
static final String USERNAME = "root";
static final String PASSWORD = "root";

public static void main( String[] args )
{
JDBCBatchProcess JDBCBatchProcess = new JDBCBatchProcess();
JDBCBatchProcess.addCityInformation();
}

private void addCityInformation()
{
Connection connection = null;
PreparedStatement preparedStatement = null;
try
{
/*
* Register the JDBC driver in DriverManager
*/


Class.forName(JDBC_DRIVER);

/*
* Establish connection to the Database using DriverManager
*/


connection = DriverManager
.getConnection(DB_URL, USERNAME, PASSWORD);

/*
* Set auto-commit to false
*/

connection.setAutoCommit(false);

String sql = "insert into city values(?,?,?,?,?)";

/*
* Execute the query
*/

preparedStatement = connection.prepareStatement(sql);

preparedStatement.setInt(1, 5000);
preparedStatement.setString(2, "Bangalore");
preparedStatement.setString(3, "IND");
preparedStatement.setString(4, "Karnataka");
preparedStatement.setInt(5, 20000);

/*
* Add sql to the batch
*/


preparedStatement.addBatch();

preparedStatement.setInt(1, 5001);
preparedStatement.setString(2, "Channai");
preparedStatement.setString(3, "IND");
preparedStatement.setString(4, "TamilNadu");
preparedStatement.setInt(5, 200000);

/*
* Add sql to the batch
*/


preparedStatement.addBatch();

preparedStatement.setInt(1, 5002);
preparedStatement.setString(2, "Thiruvanathapuram");
preparedStatement.setString(3, "IND");
preparedStatement.setString(4, "Kerala");
preparedStatement.setInt(5, 800000);

/*
* Add sql to the batch
*/


preparedStatement.addBatch();

int result[] = preparedStatement.executeBatch();

/*
* Explicitly commit statements to apply changes
*/

connection.commit();

for( int i = 0; i < result.length; i++ )
{
System.out.println(result[i]);
}

}
catch( SQLException se )
{
/*
* Handle errors for JDBC
*/

try
{
connection.rollback();
}
catch( SQLException e )
{
e.printStackTrace();
}
se.printStackTrace();
}
catch( ClassNotFoundException e )
{
/*
* Handle errors for Class.forName
*/

e.printStackTrace();
}
catch( Exception e )
{
try
{
connection.rollback();
}
catch( SQLException e1 )
{

e1.printStackTrace();
}
e.printStackTrace();
}
finally
{
/*
* finally block used to close resources
*/

try
{
if( preparedStatement != null )
{
preparedStatement.close();
}
}
catch( SQLException sqlException )
{
sqlException.printStackTrace();
}
try
{
if( connection != null )
{
connection.close();
}
}
catch( SQLException sqlException )
{
sqlException.printStackTrace();
}
}

}
}


Output
1
1
1
Environment Used 

JDK version : 1.7.0_51
Mysql Server version : 5.6.19 

To Download JDBCBatchProcessDemo Project Click the below link

https://sites.google.com/site/javaee4321/jdbc/JDBCBatchProcessDemo_PreparedStatement.zip?attredirects=0&d=1

See also:
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Read: JDBC Batch Processing [PreparedStatement] Demo

    Topic: Devops isn’t killing developers – but it is killing development and developer productivity Previous Topic   Next Topic Topic: Java HashSet Example

    Sponsored Links



    Google
      Web Artima.com   

    Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use