Use of database for multiple Places in windows application in c# -
i have developed application gonna used @ multiple places. how should maintain 1 database all?
or there 1 way of using remote database software.
if use remote database, facing problem loading controls in forms.
please suggest solution. thanks
typically you'd design system leveraging multi-tiered architecture, consists of:
- front-end user interface
- a database back-end
- middle tier/business layer let's web pages access database , provides additional business logic (perhaps web service?)
you don't give go on far details go, seems have several physical locations need access single database. can:
- develop (web or desktop) application handles front-end ui , middle tier (which access data , other stuff)
- develop application handles front-end ui, calls web service accesses database , other stuff. in case, may have several locations different front-end applications consume same centralized web service.
Comments
Post a Comment