1
I created an application in windows Forms and, as I am still developing and adjusting the same, I need to be updating periodically.
my program is being used on five different machines and whenever one of the users asks for an update I do the following:
-uninstall the previous version (I am using Visual Studio Installer to install) -access the database and change everything -install the new version
I want to know if my program has a new update and update alone, or at least make the bank changes and install over the old version.
Do you run the application and database on the same machine? Which database*?
– Maurivan
both on the same host yes. mysql
– Italo Rodrigo
For starters, I suggest implementing a database server, so you’ll have the data centrally.
– Maurivan