How does MySQL execute multiple SQL statements at the same time?

Source: Internet
Author: User
Tags mysql connection string
This problem was discovered when we made a database initialization tool, that is, when executing an SQL Statement in a Statement, it can be correctly executed. If multiple statements are executed at the same time

This problem was discovered when we made a database initialization tool, that is, when executing an SQL Statement in a Statement, it can be correctly executed. If multiple statements are executed at the same time

This problem was found during database initialization tools, that is, when an SQL Statement is executed in a Statement, it can be correctly executed. If Multiple SQL statements are executed at the same time, an SQL syntax error will be reported, it hurts your mind.

You can find two solutions on the Internet:

1. The simplest way is to set the allowMultiQueries parameter to true in the MySQL connection string.

2. Split the SQL Statement into multiple SQL statements using a semicolon in the program, use the addBatch method of Statement, and finally exectebatch.

Conclusion: The first method is the simplest.

I hope this will be helpful to my friends who will encounter such problems in the future.

  • Note: JDBC batch processing cannot be added to select statements; otherwise, an exception is thrown:
  • Java. SQL. BatchUpdateException: Can not issue SELECT via executeUpdate ().

  • 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.