What is the automatic locking strategy for InnoDB and Myisam in RT,MySQL, respectively? When do we need to explicitly add read-write locks? ...
MyIsam only supports table locks. Many places say that deadlocks will not occur in MyIsam. Is that so? If my two transactions query two tables and add write locks at the same time, but the locking order is not the same, will it deadlock? ...