pymysqlでトランザクション処理をする際に、トランザクションを開始するためのbegin()があります。
begin()
トランザクションを開始します。
しかし、このメソッドを使った場合と使わなかった場合の違いが分からず、
このメソッドを使う理由が分かりません。
このメソッドをどのように使うのか教えてください。
Python
1import pymysql 2 3con = pymysql.connect( 4 host = "localhost", 5 user = "root", 6 password = "root", 7 db = "testdb", 8 charset = "utf8" 9 ) 10TABLE = "testtb" 11ROW = "(Data1, Data2, Data3)" #追加するデータの列を指定するため 12 13cur = con.cursor() 14 15# あってもなくても同じ結果になる? 16#con.begin() # トランザクション開始 17 18cur.execute("INSERT INTO " + TABLE + " " + ROW + " VALUES (%s, %s, %s);", ("test1", "", "")) 19con.commit() 20 21try: 22 cur.execute("INSERT INTO " + TABLE + " " + ROW + " VALUES (%s, %s, %s);", ("test2", "", "")) 23 cur.execute("INSERT INTO " + TABLE + " " + ROW + " VALUES (%s, %s, %s);", ("test3", "", "")) 24 not_defined_func() 25 26except Exception as e: 27 """ 28 tryに記述したexecute()を取り消す。 29 tryでcommit()されていると、復帰できない。commit()は最後に一括で行う。 30 """ 31 con.rollback() 32 print("-----") 33 print(type(e), e) 34 print("-----") 35 36finally: 37 con.commit() 38 39cur.close() 40con.close()
Windows10
> python -V Python 3.8.2 > mysql --version mysql Ver 8.0.19 for Win64 on x86_64 (MySQL Community Server - GPL) > pip3 list (省略) PyMySQL 0.9.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。