1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Golang dbrでのトランザクション

Last updated at Posted at 2016-08-31

実装時に、どうしてもトランザクションがうまく動作しない。
調べたところ、よく目にする以下の形

sess := conn.NewSession(nil)
tx, _ := sess.Begin()
_, err := sess.InsertInto など
if (err != nil) {
  tx.Rollback()
}

tx.Commit()

よく見かける形

でも、試したところ、rollbackされなかった。。。

dbrのversionかもしれ無いけど、dbrのドキュメントを見ると
dbr.Tx

tx.InsertInto
とある。

以下のようにしてみる

sess := conn.NewSession(nil)
tx, _ := sess.Begin()
_, err := tx.InsertInto など
if (err != nil) {
  tx.Rollback()
}

tx.Commit()

無事トランザクションがききました。


###追記(2016/09/20)
dbrのgithubのテストコードでも同様になっていました。
参考URL:https://github.com/gocraft/dbr/blob/master/transaction_test.go

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?