Set the transaction isolation level of MySQL
How do I set the isolation level of MySQL 5.1 InnoDB?
By entering:
mysql> show variables like '%isola%';
The default level set for InnoDB is repeatable read.
How do I change the isolation level?
This question and all comments follow the
"Attribution Required."
Similar questions
- sql - With (nolock) and set transaction isolation level read uncommitted
- ruby on rails - How to use activerecord connection to set transaction isolation level?
- sql - Nolock and transaction isolation level
- sql - How to set isolation level on SqlCommand / SqlConnection without transaction initialization
- python - How to set transaction isolation level in Sqlalchemy of PostgreSQL?
- More similar questions >>
All Answers
Leave a Reply