2021-07-11から1日間の記事一覧

トランザクションのネスト

DB

MySQL (8.0.22)https://www.wakuwakubank.com/posts/203-mysql-transaction-nest/ トランザクションのネストをサポートしていない2つ目のstart transactionでコミットされる drop table tab1;create table tab1(col1 int); select * from tab1; start transa…

エラー発生時のロールバック範囲

DB

MySQL (8.0.22)https://dev.mysql.com/doc/refman/8.0/ja/innodb-error-handling.html エラー内容によって、文レベルのロールバックとなったり、トランザクションレベルのロールバックとなったりする デッドロックエラーはトランザクションレベルのロールバ…