I have been reading about setting the isolation levels of transactions. But couldn't really find a straight answer to the simple question:
Do I first set the isolation level and then start the transaction or vice versa.
START TRANSACTION
SET TRANSACTION ISOLATION LEVEL READ COMMITTED
So which command comes first? Does it even matter?
PS: Is there any disadvantage about using transactions/isolation levels for PHP/MySQL sites?