Setup File
-
Hei All, Can we install any big software via C# setup application? I want to install SQL Server before my application and then create user in sql server but I dont know how can i install SQL server via setup file? Thanks
Syed Shahid Hussain
-
Hei All, Can we install any big software via C# setup application? I want to install SQL Server before my application and then create user in sql server but I dont know how can i install SQL server via setup file? Thanks
Syed Shahid Hussain
Here you go Embedding SQL Server Express into Custom Applications[^] Walkthrough: Using a Custom Action to Create a Database at Installation[^] Install sql server database with visual studio setup[^] Fun with VS2008 Setup Package Pre-Requisites[^] .NET Setup Deployment - MSI, Cassini, SQL Server, NTFS[^] Deploy your Application and Database[^]
thatraja
**My Tip/Tricks
My Dad had a Heart Attack on this day so don't...
** -
Hei All, Can we install any big software via C# setup application? I want to install SQL Server before my application and then create user in sql server but I dont know how can i install SQL server via setup file? Thanks
Syed Shahid Hussain
Best practice is that you don't do this. SQL Server is only supported as a seperate install. Once the server is installed and running seperately, your application installer can be told which SQL Server to use and what the login credentials should be to execute a SQL script to add your users and setup the database and its security.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
Here you go Embedding SQL Server Express into Custom Applications[^] Walkthrough: Using a Custom Action to Create a Database at Installation[^] Install sql server database with visual studio setup[^] Fun with VS2008 Setup Package Pre-Requisites[^] .NET Setup Deployment - MSI, Cassini, SQL Server, NTFS[^] Deploy your Application and Database[^]
thatraja
**My Tip/Tricks
My Dad had a Heart Attack on this day so don't...
**Hei Thatraja, Thanks u so so so so much. You dont know how big treasure u have given to me. I'm Happy Thanks once again.
Syed Shahid Hussain
-
Best practice is that you don't do this. SQL Server is only supported as a seperate install. Once the server is installed and running seperately, your application installer can be told which SQL Server to use and what the login credentials should be to execute a SQL script to add your users and setup the database and its security.
A guide to posting questions on CodeProject[^]
Dave KreskowiakThanks for ur reply. I'll read the setup process completely and keep in mind ur points while developing setup project.
Syed Shahid Hussain
-
Hei All, Can we install any big software via C# setup application? I want to install SQL Server before my application and then create user in sql server but I dont know how can i install SQL server via setup file? Thanks
Syed Shahid Hussain