Click here to Skip to main content
16,018,158 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
What is client-server communication with centralized database?Please tell me basic concepts about it and tell me how to do that?
Posted

1 solution

Client server comunication with a centralized DB is one way to establish communication between client computers and some server, especially when the server is not directly reachable from the clients, but the database can be reached from the client side and the server side as well.
The mechanisms that can be used to notify either client or server of some incoming request or a response really depend on what RDBMS you are using. One of the easiest but "chattiest" methods is surely polling[^]. If your database is MSSQL 2005 you might want to look into SQL Server Notification Services[^].

Hope that helps you a bit.

Regards,

— Manfred
 
Share this answer
 
v3

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