MySQL Fix for Error Code: 1205. Lock wait timeout exceeded; try restarting transaction

This can mostly occur when you are trying to insert or update a table but there is a pending transaction thats locked some table. I run into these during my test units when inserting or updated test data and if there is a exception in between. Perils of good programming yeah! 😀 Anyways in order ...