On 2017-05-30, Skip Montanaro <skip.montan...@gmail.com> wrote:
> Assuming the underlying database supports transactions, is there any
> difference between calling the commit() method on the connection and
> calling the execute method on the cursor with the "commit transaction"
> statement? It seems a bit asymmetric to me to start a transaction with
>
>   cur.execute("begin transaction")
>
> but end it with
>
>   conn.commit()

Yes, I found this most peculiar.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to