소스 검색

bug fix: sql writer::apply

Steve Nyemba 4 년 전
부모
커밋
eef84d8069
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      transport/sql.py

+ 1 - 0
transport/sql.py

@@ -66,6 +66,7 @@ class SQLRW :
             else:
                 # Executing a command i.e no expected return values ...
                 cursor.execute(_sql)
+                self.conn.commit()
             
         finally:
             cursor.close()