4 SET AUTOCOMMIT — set the autocommit behavior of the current session
8 SET AUTOCOMMIT { = | TO } { ON | OFF }
12 SET AUTOCOMMIT sets the autocommit behavior of the current database
13 session. By default, embedded SQL programs are not in autocommit mode,
14 so COMMIT needs to be issued explicitly when desired. This command can
15 change the session to autocommit mode, where each individual statement
16 is committed implicitly.
20 SET AUTOCOMMIT is an extension of PostgreSQL ECPG.