JDBC uses database transactions and jdbc database transactions

Source: Internet
Author: User

JDBC uses database transactions and jdbc database transactions







How does a java program use jdbc to define a transaction?

Set connection to not automatically submit
Change to manual submission;
Write the operation database in trycatch.
Throw an exception
Connection rollback;
This is a practice.

Private Connection conn = null;
Try {
Conn. setAutoCommit (false );
Conn. commit ();
Conn. close ();
} Catch (Exception e ){
Conn. rollback ();
}

Commit and roll back database transactions in jdbc

First, a database connection exception may be caused by JDBC connection or driver issues.
Second, the database is not found.
Third, the spelling of database fields is incorrect.
Fourth, SQL statement Error
Fifth, no. Haha. This is a problem I encountered in the last two days... It's all here ..

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.