I would like to update data for every action (insert, update, delete) that happens on a localhost MySQL server to a remote MySQL server. How would I do that?
I would like to update data for every action (insert, update, delete) that happens
Share
Can’t you use Triggers?
From : http://dev.mysql.com/doc/refman/5.0/en/faqs-triggers.html#qandaitem-22-5-1-5
I wouldn’t recommend this because you will be consuming bandwidth for every small change you do. You can try a scheduled job instead.