should client machine contain sqlserver installed , if i am using sqlserver as backend
-
i have used backend as sqlserver, is it necessary that the client machine, where i'll be deploying my application that machine should have sqlserver installed in it. Otherwise, any prerequisites i should include while creating setup file.
-
i have used backend as sqlserver, is it necessary that the client machine, where i'll be deploying my application that machine should have sqlserver installed in it. Otherwise, any prerequisites i should include while creating setup file.
praveenvkumarv wrote:
is it necessary that the client machine
No!!! Database should be in your server side. All client should store/Retreive data from Single Database Server. Isn't It.
cheers, Abhijit My Recent Article : Beginner's Guide to ASP.NET Application Folder
-
praveenvkumarv wrote:
is it necessary that the client machine
No!!! Database should be in your server side. All client should store/Retreive data from Single Database Server. Isn't It.
cheers, Abhijit My Recent Article : Beginner's Guide to ASP.NET Application Folder
my application is a windows application.
-
i have used backend as sqlserver, is it necessary that the client machine, where i'll be deploying my application that machine should have sqlserver installed in it. Otherwise, any prerequisites i should include while creating setup file.
As far as I understand you've got a client/server application, where there is an SQL server on server side and some application on the client side. So, you've got two choices to deploy the app on the customer side: 1. Deploy the SQL server and the client application on the same machine, which in general is not a good idea, 2. Deploy your stuff on two separate machines - one for SQL, i.e. the server, and one (or several) machine(s) for the client application.
Regards, Lev