I have a C # .net application that has been distributed separately for several clients. From time to time, we add some new features or fix some errors and often make changes to the database. I use a one time deployment approach to upgrade exe for my client. An instance of SQL Server was installed on their system.
I want to know how I can update my sql database with every exe update.
Please remember that it is possible that the client is working on version 2 and will never upgrade to version 3, but when version 4 is released, it updates the application. In this case, I need to execute two scripts in my database. One for version 3 and one for the current version, which is 4.
thank
source
share