Reputation: 538
So I'm ending my application and I would like to make that Microsoft SQL Server installs before my app installation, so basically :
Do you guys have any idea how to made that complicated installer and what tool should I use to make it quick and good ?
Upvotes: 0
Views: 99
Reputation: 1556
You can silently install a specific instance of SQL server (before you install your app) with known connection details that only your app uses.
Or your app can request connection details from the user after installation on [initial] start up if it cannot find SQL Server instance that it needs.
In both cases you would need to run sql scripts to create your DB and User logon for SQL Server...
here is a list of free and not free installation software... http://en.wikipedia.org/wiki/List_of_installation_software
Upvotes: 1