Install SQLServer with the application

4

I am finalizing an application and will compile using Inno Setup . The system I am using SQLServer .

I will install the system on other computers.

Is the database installed on the computers that will receive the application or do I have to install the SQLServer on each computer?

I'm using Visual Studio 2013 Express .

    
asked by anonymous 07.08.2015 / 21:48

1 answer

6

It depends on what you did, but I would say that it is not necessary to install on all computers, it is usually only necessary on the computer that will be the server.

Of course, if you've done everything without thinking about it before, you may have trouble accessing the server and you'll have to sort out the application setup. One thing to do to run on your machine, another is to do to rotate remotely. Obviously on the server you will have to install SQL Server. And if you already have a basic database to start running the application, it should be put there.

If you used any extra library to stop SQL Server other than .Net standards, you will have to distribute it to your installation.

There are cases where the application may need the database on the client as well. It is not recommended to use SQL Server. At least not in its full version. It is best to use SQL Server Compact which is a database that is built into the application. Or better yet, use SQLite .

    
07.08.2015 / 21:54