MyBatis execute multiple SQL statements at once

Source: Internet
Author: User
MyBatis execute multiple SQL statements at once

There is a common scenario: delete users need to first delete the user's foreign key association data, otherwise it will trigger the rule error.

There are three solutions: 1, multiple SQL batch execution, 2, stored procedure or function call, 3, SQL batch execution.

Today I'm going to talk about how to execute multiple statements at once (using MySQL database) in MyBatis.

1, modify the database connection parameters plus allowmultiqueries=true, such as:

Hikariconfig.security.jdbcurl=jdbc:mysql://xx.xx.xx:3306/xxxxx?characterencoding=utf-8&autoreconnect=true &failoverreadonly=false&allowmultiqueries=true

2, write more than one statement, using ";" to separate

<delete id= "Deleteuserbyid" parametertype= "String" >
Delete from sec_user_role where userid=#{id};
Delete from Sec_user where id=#{id};
</delete>

MyBatis execute multiple SQL statements at once

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.