In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-19 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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.