T
TS
Hi, I have a windows app that is installed all across the state. Each site
has its own database server that must be separately updated when schema or
data changes are needed. Each site has several client machines that use the
server as a service to manage it's client app's data. There is a central
admin app that maintains all the master content used in each one of these
databases. Updates to this content are then pushed out to the remote sites'
server where the database resides. Currently i am using resource files that
are used as a key value pair to retrieve text in diff. locals. The files are
of course xml, though to use them you make updates to the text in this file,
then compile the project to make a locale specific dll file. ex: es-mx.dll.
These resource files are used by the client app at the remote sites.
What is the best way to maintain this culture specific data using my current
business process? If i mimick the way i do it in my dev environment, i would
have to have my admin app update the xml resource file, then compile it &
send it out & install it on each client machine at the remote site. Someone
else suggested using a a table in a db that mimicks the key value pair like
the resource file. This would allow the database content to have this
modified locale specific data pushed out with the rest of the database
changes to the database server only, instead of having to have complicated
build scripts and post data to each client machine.
if anything needs explained, let me know
thanks
has its own database server that must be separately updated when schema or
data changes are needed. Each site has several client machines that use the
server as a service to manage it's client app's data. There is a central
admin app that maintains all the master content used in each one of these
databases. Updates to this content are then pushed out to the remote sites'
server where the database resides. Currently i am using resource files that
are used as a key value pair to retrieve text in diff. locals. The files are
of course xml, though to use them you make updates to the text in this file,
then compile the project to make a locale specific dll file. ex: es-mx.dll.
These resource files are used by the client app at the remote sites.
What is the best way to maintain this culture specific data using my current
business process? If i mimick the way i do it in my dev environment, i would
have to have my admin app update the xml resource file, then compile it &
send it out & install it on each client machine at the remote site. Someone
else suggested using a a table in a db that mimicks the key value pair like
the resource file. This would allow the database content to have this
modified locale specific data pushed out with the rest of the database
changes to the database server only, instead of having to have complicated
build scripts and post data to each client machine.
if anything needs explained, let me know
thanks