Thread: Lock Tables??
View Single Post
  #2  
Old 08-16-2006, 06:54 AM
sierra sierra is offline
Senior Member
 
Join Date: Jul 2006
Posts: 220
Thanks: 0
Thanked 1 Time in 1 Post
Rep Power: 18
sierra is on a distinguished road
Default

MySQL locking is independent from the storage engine. It is deadlock free as we lock all tables that we plan to work with in a single lock statement. Only the locked tables can be used until the lock is released.
MySQL knows, which tables will be used throughout the command and locks all in a single go. At the end of the command the lock is released. -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  Webmaster Forums - View Single Post - Lock Tables??
Thread: Lock Tables??
View Single Post
  #2  
Old 08-16-2006, 06:54 AM
sierra sierra is offline
Senior Member
 
Join Date: Jul 2006
Posts: 220
Thanks: 0
Thanked 1 Time in 1 Post
Rep Power: 18
sierra is on a distinguished road
Default

MySQL locking is independent from the storage engine. It is deadlock free as we lock all tables that we plan to work with in a single lock statement. Only the locked tables can be used until the lock is released.
MySQL knows, which tables will be used throughout the command and locks all in a single go. At the end of the command the lock is released. -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote