Click here to Skip to main content
15,888,984 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I have developed a winform application linked to an SQL SERVER database. I want to deploy this project so that I can give friends to install for use on their computers.

Example: Just as I can use other app like MS-WORD and more.

Video, handbook and demonstrations are highly welcome.

Thanks in advance.

The project should be in a standard format.

Pls, I need to defend this on Sunday

What I have tried:

I have no idea. All I've tried did not work. That's trying to publish
Posted
Updated 25-Apr-19 8:09am
v2

SQL server is designed to be shared by multiple users. So you need to install the SQL Server instance on a system that is accessible to all the users. You then just need to publish the application, and its prerequisites, to each user's PC. Google will find many articles on the subject.
 
Share this answer
 
As Richard says, SQL Server is intended as a multiuser database, which means it is server based and a heavyweight installation which takes knowledge and effort to both install and maintain properly. You should not consider installing SQL Server on any system for your users as that removes all the advantages of using a multiuser DB in the first place!

If you are expecting only a single user, then don't use SQL server - use SQLite, Sql Compact, or even Access instead - they require nothing significant to be added to yoru instal program other than the required DLL files. The changes to your app (if it was written well) should be relatively trivial to support it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900