Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is batch processing in JDBC

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article will explain in detail what batch processing is in JDBC. The editor thinks it is very practical, so I share it for you as a reference. I hope you can get something after reading this article.

Go directly to the code:

Package

Cn.zhou.epet.test

Import

Java.sql.*

Public

Class Addbatch {public

Static void main (String [] args) {Connection connection =

Null;PreparedStatement stmt =

Null;try

{/ /

Load the database driver Class.forName ("oracle.jdbc.driver.OracleDriver"); / /

Connect to database connection =

DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:bdqn"

"epet", "admin"); stmt =

Connection.prepareStatement ("insert"

Into master values (master_seq.nextval,?) ")

Connection.setAutoCommit (false); / /

Transaction Begin, so that the program does not automatically commit the transaction stmt.setString (1

"QQ"); stmt.setString (2

"RR"); stmt.setInt (3

1); stmt.addBatch (); / /

Add batch 1

Stmt.setString (1

"WW"); stmt.setString (2

"EE"); stmt.setInt (3

1); stmt.addBatch (); / /

Add batch 2

Stmt.setString (1

"VV"); stmt.setString (2

"AA"); stmt.setInt (3

1); stmt.addBatch (); / /

Add batch 3stmt.executeBatch (); / /

Execute batch processing

Connection.commit (); / /

Commit transaction

Connection.setAutoCommit (true); / /

Transaction End, let the program automatically commit transactions (default) System.out.println ("dd");} catch

(ClassNotFoundException e) {e.printStackTrace (); System.out.println ("failed to load driver class successfully!");} catch

(SQLException e) {e.printStackTrace (); System.out.println ("an exception occurred when executing a SQL statement!") ; try

{if

(connection! = null) {connection.rollback (); / /

Transaction rollback connection.setAutoCommit (true); / /

Let the program automatically commit the transaction (default)}} catch

(SQLException E1) {e1.printStackTrace ();}} catch

(Exception e) {e.printStackTrace (); System.out.println ("other exceptions!") ;}

Finally {try

{if (stmt

! = null) {stmt.close (); stmt =

Null;} if

(connection! = null) {connection.close (); connection =

Null;}} catch

(SQLException e2) {System.out.println ("exception occurred while shutting down the database!") ;}

}

This is the end of this article on "what is batch processing in JDBC". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it out for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report