Quote:
Originally posted by bhawin13
How to lock row for operation so other operation can not read that row.
I want to maintain concurrency. is there any way to lock row?
Is mysql support row level locking?
If yes how?
|
Yes, MySQL supports row level locking but you need to use InnoDB database engine.
FYI: locking is not for select queries but it prevents DML queries!