I have three MYSQL databases at different locations.
DB1 is the central server and DB2, DB3 are normal databases. The insert, update, delete operations on DB2 and DB3 has to reflect in the respective tables of DB1.
As well as the inserts, updates, deletes from DB1 has to reflect to DB2 and DB3. I need a two way communication between all these databases.
I need a C#.Net code to do this. How can I do this.
Help me.