आप MySQL LOCK TABLES
. का उपयोग करके तालिकाओं को लॉक कर सकते हैं इस तरह कमांड करें:
LOCK TABLES tablename WRITE;
# Do other queries here
UNLOCK TABLES;
देखें:
http://dev.mysql.com/doc/refman /5.5/hi/lock-tables.html
आप MySQL LOCK TABLES
. का उपयोग करके तालिकाओं को लॉक कर सकते हैं इस तरह कमांड करें:
LOCK TABLES tablename WRITE;
# Do other queries here
UNLOCK TABLES;
देखें:
http://dev.mysql.com/doc/refman /5.5/hi/lock-tables.html