PDOATTRAUTOCOMMIT
PDOATTRAUTOCOMMIT is a PHP Data Objects (PDO) attribute that controls the autocommit mode for a database connection. When autocommit is enabled, each SQL statement executed through the PDO connection is automatically committed to the database as a separate transaction. This means that changes made by a single statement are immediately permanent.
The default value for PDOATTRAUTOCOMMIT is true, meaning autocommit is enabled by default for most database
When autocommit is disabled, SQL statements are not automatically committed. Instead, you are responsible for explicitly