0
I will develop a Desktop application, and this application will make access to Local Database, my question is:
If I make an application that accesses SQL Server normally, when I generate the release version, will I have to install SQL Server on my client as well? or it is possible that the database comes together with the application and I do not need to install anything in the client?
Yes, you will have to install a version of SQL Server(Client) in the client, and this version can go along with the application, depending on the installer you generate
– PauloHDSousa
Got it! Thank you!
– Gabriel Gomes
Da uma pesquisada por CLICK ONCE https://msdn.microsoft.com/pt-BR/library/t71a733d.aspx
– PauloHDSousa
Gabriel, if there will be database on the client computer, then you will have to install SQL Server on the computer, because SQL Server works as a service (except Localdb). // No development is using Localdb or Express?
– José Diz
Jose, I’m using Localdb
– Gabriel Gomes