MySQL Forums
Forum List  »  Connector/ODBC

Re: Real-time notification to client when table is changed
Posted by: Bogdan Degtyariov
Date: May 04, 2020 05:00AM

Although the method with triggers and polling offers some solution but it does not provide the guard against simultaneous data modifications by different users.

One of the ways to avoid the conflicts is to use the InnoDB row locking, which prevents others from modifying a particular data row if someone intends to modify it or lock for any other reason. Here is more information on how the InnoDBC locking works.

https://dev.mysql.com/doc/refman/8.0/en/innodb-locking.html

Options: ReplyQuote


Subject
Written By
Posted
Re: Real-time notification to client when table is changed
May 04, 2020 05:00AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.