sometimes,you need to lock one or more table to ensure the integrity of data.may be it's help to you.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | def require_lock(*tables):
def _lock(func):
def _do_lock(*args,**kws):
#lock tables
cursor = connection.cursor()
cursor.execute("LOCK TABLES %s WRITE" %' '.join(tables))
try:
result = func(*args,**kws)
except Exception,e:
raise Exception(e)
else:
return result
finally:
#unlock tables
cursor.execute("UNLOCK TABLES")
if cursor:cursor.close()
return _do_lock
return _lock
'''
example:
@require_lock(table_A,table_B)
fuc(args):
pass
'''
|
More like this
- Stuff by NixonDash 1 month, 1 week ago
- Add custom fields to the built-in Group model by jmoppel 3 months, 1 week ago
- Month / Year SelectDateWidget based on django SelectDateWidget by pierreben 6 months, 3 weeks ago
- Python Django CRUD Example Tutorial by tuts_station 7 months, 1 week ago
- Browser-native date input field by kytta 8 months, 3 weeks ago
Comments
I think, that it would be better and shoter, to use try…finally block, like that:
#
Please login first before commenting.