Click here to Skip to main content
15,891,718 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
what is replication ? how replication is used in C# ? Please help me.
Posted
Updated 2-May-12 8:36am
v2

Please see:
http://en.wikipedia.org/wiki/Database_replication#Database_replication[^].

C# or not C# — is pretty much irrelevant. It's not replication can be used in C#, it's C# could be used for implementation of replication, or anything at all.

—SA
 
Share this answer
 
Comments
Espen Harlinn 2-May-12 14:04pm    
Good reply :-D
Sergey Alexandrovich Kryukov 2-May-12 14:11pm    
Thank you, Espen.
--SA
VJ Reddy 3-May-12 8:41am    
Good reference. 5!
Sergey Alexandrovich Kryukov 3-May-12 13:14pm    
Thank you, VJ.
--SA
If you are working with Microsoft SQL Server you will probably find this[^] interesting.

Best regards
Espen Harlinn
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 2-May-12 14:12pm    
Yes, there is some chance OP would need to know it. :-) My 5.
--SA
Espen Harlinn 2-May-12 14:13pm    
Thank you, Sergey :-D
VJ Reddy 3-May-12 8:42am    
Good reference. 5!
Espen Harlinn 3-May-12 8:58am    
Thank you, VJ :-D
Replication is a way to manage/synchronize two (or more) databases on two (or more) different machines. Now this has nothing to do with C#.

In most of the applications written on this planet earth, C# is used to interact with database to do 4 major operations
- Select
- Insert
- Update
- Delete

Since we do it in C#, this thing does not depend on whether the database is replicated or not. No more talking, just read the links given above.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900