Click here to Skip to main content
15,890,670 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear friends,
I developed a window application using visual studio 2012, c# and SQL server 2012. The project is already completed and tested. But now I want to deploy my project with sql serve database so that my client can install it on his system. Please how can I go about this so that the database will install with the application on the my client machine.

What I have tried:

I have try to add the database to my solution explore but it is not working
Posted
Updated 4-Mar-16 4:26am
Comments
dan!sh 4-Mar-16 4:55am    
You can start here

 
Share this answer
 
I don't recommend using SQL Server. This is a hard work.
If you wish to perform a full automation, you need to cover the following issues:

1. Detection of different version of OS: XP, Win7, Win8, Win10
2. Detection of existence of .NET Framework
3. Perform installation of required .NET Framework
4. Detection of 32 bit or 64 bit of Operating System
5. Need to include various version of installation files of SQL Server.
6. Need to append the correct syntax for different version SQL Server for unattended automatic installation.

I personally prefer SQLite or MySQL, which the installation process is much more simpler.
 
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