Collections:
What Is a Transaction - Unit of Work in MySQL
What Is a Transaction in MySQL?
✍: FYIcenter.com
A transaction is a logical unit of work requested by a user to be applied to the database objects. MySQL server introduces the transaction concept to allow users to group one or more SQL statements into a single transaction, so that the effects of all the SQL statements in a transaction can be either all committed (applied to the database) or all rolled back (undone from the database).
The transaction concept only works on tables that use transaction-safe storage engines, like InnoDB and BDB. For transaction-unsafe storage engines, like MyISAM, transaction will be ignored.
⇒ Ways to Start a New Transaction in MySQL
⇐ Transaction Management: Commit or Rollback in MySQL
2017-08-03, 3513🔥, 0💬
Popular Posts:
How to download and install SQL Server 2005 Sample Scripts in SQL Server? If you want to learn from ...
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...
Where to find answers to frequently asked questions in general areas of Microsoft SQL Server Transac...
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...