Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
is that a limitation to have a c# code to do that ? vs. a system setup that will make a replica DB ??.. if you must have c# code than in your Data Access layer just run the same query in all databases.. – Mortalus Sep 14 '12 at 7:00
There is no limitation. But all the inserts, updates, deletes should reflect without re executing the mysql commands after initializing? – GSReddy Sep 14 '12 at 7:19

closed as off topic by Clyde Lobo, tereško, xdazz, DCoder, user97693321 Sep 16 '12 at 5:27

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

Option 1 -- In order to achieve this,the best way is to implement the replication across the databases.

Option 2 -- If you have to do this in C#.Net then I suggest-Perform the each operation(insert,delete & update) on three DBs tables one after the other in your code.

share|improve this answer
Could you please provide some good working examples to do replication? – GSReddy Sep 14 '12 at 7:11

Try this link ..

1. Replication DB MYSQL

2. Formal MySQL Referance

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.