InterviewSolution
Saved Bookmarks
| 1. |
What is the command to disable autocommit and launch a transaction?(a) INITIATE TRANSACTION(b) START TRANSACTION(c) DISABLE AUTOCOMMIT(d) TRANSACTION |
|
Answer» The correct option is (b) START TRANSACTION To explain I would say: By default, MySQL runs in the autocommit mode. This means that the changes performed by individual statements or operations on tables are automatically committed to the database immediately. |
|