Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Talking about Database-transaction (mysql)

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Business

Transaction is actually a combination of database addition and deletion operations, it can be understood this way, when you type 1000 yuan to someone, there will be two changes in the database, one is that your money has decreased, the other is that that person's money has increased, and these two operations must be satisfied at the same time, otherwise the problem will be big, how to ensure that the two operations are all implemented, which requires the support of mysql transactions.

Mysql supports transactions, but first confirm that you are the InnoDB storage engine

Mysql transactions are designed to maintain the integrity of the database. Statements that are stacked in batches are either executed or not executed at all. Commonly used to manage insert delete and update statements.

Characteristics of the transaction:

1. Atomicity of transactions: a set of transactions that either succeed or are withdrawn.

2. Stability: illegal data (foreign key constraints, etc.) and transaction withdrawal.

3. Isolation: transactions run independently. If the result of one transaction affects other transactions, the other transactions will be withdrawn. 100% isolation of transactions requires the sacrifice of speed.

4. Reliability: after the software and hardware crash, the InnoDB data table driver will use log files to reconstruct and modify. You can't have both reliability and high speed, and the innodb_flush_log_at_trx_commit option determines when to save the transaction to the log.

Here are some commands that operate in mysql

The command set autoaction=0;// is used to cancel the autocommit of mysql. The begin;// transaction begins. Savepoint pointname;// sets up storage points and sets up multiple storage points that can be returned to one using rollback. Rollback pointname;// returns to a point. Rollback;// returns to begin if it does not use point. Commit;// can be submitted using commit if it can be submitted.

Use show variables like 'autocommit'; to view the status of the current autoaction

Here are the tests I performed under mysql:

You can see that using rollback goes back to the data before it was added.

Using the savepoint approach, readers can go down and test it.

The following is a test of transactions in C: (using the connect c package)

It looks like this when you first test the data in the previous table

My test code is as follows:

The my_sql.h here only gives the code for the transaction (the code for all operations of the database will be given in a later blog on manually setting up the http server). My_sql.h 13} 14 bool HttpSql::mysql_start () 15 {16 if (mysql_query (mysql, "SET autocommit=0") = = 0) 17 {18 cout

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.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report