how to handle db concurrency in client-server application in C#?
Posted
by RAJ K
on Stack Overflow
See other posts from Stack Overflow
or by RAJ K
Published on 2010-04-10T17:52:20Z
Indexed on
2010/04/10
18:03 UTC
Read the original article
Hit count: 195
- I am developing an application in C# WPF which will have Client-Server architecture (Client will do products sales billing). I am novice in this area and I asked this question to start my development process.
Click here to view question.
So, ultimately I have selected MySQl, WCf & WPF. Now I have one silly question. Do i need to handle DB concurrency explicitly in my application (like 3 clients inserting data same time) or MySQl will handle this without any conflict? - To accomplish my project i thought, I will create a service in WCf which will do DB queries from client application. Do you have any suggestion to improve my application performance.
© Stack Overflow or respective owner