How to start a transaction in MySQL

How to start a transaction in MySQL

Preface

This article mainly introduces how to start a transaction in MySQL. You can also refer to the official documentation for related information.

https://dev.mysql.com/doc/refman/8.0/en/commit.html

Method 1

START TRANSACTION or BEGIN starts a new transaction COMMIT commits the current transaction ROLLBACK rolls back the current transaction

This is a well-known method, in which the methods of starting a transaction, start transaction and begin, are the same.

Method 2

SET autocommit = 0;

By default, autocommit = 1, which means that transactions are automatically committed.
Autommit is at the session level, which means that if autocommit is changed for the current connection, it will have no effect on other connections.
After setting autocommit, all SQL statements in this connection are in the form of transactions, such as each commit.

From the screenshot, we can see that there is a transaction in progress. Because set autocommit = 0; is set, the subsequent update operation will not modify the result, and other sessions will not be able to check it (RR level).

At this time, you need to manually execute commit.

Note that autocommit has not been changed. At this time, the autocommit value is still 0, which means that subsequent SQL statements of this session need to be committed manually.

This is the end of this article about how to start a transaction in MySQL. For more information about starting a transaction in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Example of viewing and modifying MySQL transaction isolation level
  • How to find out uncommitted transaction information in MySQL
  • Detailed explanation of the implementation principle of ACID transaction in Mysql
  • Explanation of mysql transaction select for update and data consistency processing
  • Mysql queries the transactions being executed and how to wait for locks
  • Example of MySQL transaction processing operation implemented in Java
  • Solution to PHP+MySQL high-concurrency locked transaction processing problem

<<:  Vue implements nested routing method example

>>:  Docker deployment MySQL8 cluster (one master and two slaves) implementation steps

Recommend

How to Set Shortcut Icons in Linux

Preface Creating shortcuts in Linux can open appl...

WeChat applet development form validation WxValidate usage

I personally feel that the development framework ...

Clean XHTML syntax

Writing XHTML demands a clean HTML syntax. Writing...

Is it easy to encapsulate a pop-up component using Vue3?

Table of contents Summary put first: 🌲🌲 Preface: ...

Vue3 draggable left and right panel split component implementation

Table of contents Breaking down components Left P...

Docker network mode and configuration method

1. Docker Network Mode When docker run creates a ...

Vue realizes the function of uploading photos on PC

This article example shares the specific code of ...

Vue+js click arrow to switch pictures

This article example shares the specific code of ...

js to realize login and registration functions

This article example shares the specific code of ...

Detailed tutorial on installing and using Kong API Gateway with Docker

1 Introduction Kong is not a simple product. The ...

Take you to understand MySQL character set settings in 5 minutes

Table of contents 1. Content Overview 2. Concepts...

Let's learn about JavaScript object-oriented

Table of contents JavaScript prototype chain Obje...

How to install the graphical interface in Linux

1. Linux installation (root user operation) 1. In...

What I learned while building my own blog

<br />In one year of blogging, I have person...