본문 바로가기

DB/PostgreSQL

[Theorem] Differences between conn.commit and conn.autocommit

In PostgreSQL, all user activity occurs in a transaction. If autocommit mode is enabled, each SQL statement forms a single transcation on its on. In this case, no rollback is possible.

 

Source from :