I´m creating an application in visual studio 2008, C#, that uses a DB. The DB is designed in SQL Server 2008. Think of it as a simple standalone app (not a web solution) where the user can store data about her books, like height, weight, language, and so on. Well, I´m creating another kind of app, but as an example it´s ok.

Now, the question is, how do I deliver this to the user. I don´t want the user to download a SQL Server package, I just want the user to click on the "setup.exe" and everything should work without any more downloads and installations! Is it possible to "embed" the DB in a "software delivery" towards a user that have no SQL Server installed?

Note, the user should have the DB / SW app on her own computer for "own use", not on a server.

link|improve this question

78% accept rate
feedback

3 Answers

up vote 2 down vote accepted

SQL Server Compact Edition was made for just that. You can have this as part of your setup.exe and the user will never know that an RDMBS is resident.

link|improve this answer
Thanks! Should I use the SQL Server Compact Edition also when designing the DB - that is, NOT use my SQL Server 2008 at all, but only use SQL Server Compact Edition both for design and "embedded distribution"? – Jack Johnstone Oct 28 '11 at 21:11
@JackJohnstone I believe there are inherently restrictions in CE as opposed to Express (if that's what you've used to develop), but I can not be sure what they are. I'd develop towards Compact Edition if you plan to use it for production. If you already have a database design, try to migrate it and see if it is successful. I'm not sure of the compatibility for moving a database from Express to CE. – Shark Oct 28 '11 at 21:15
great, thanks for clarification! – Jack Johnstone Oct 28 '11 at 22:12
feedback

Uh - if your application uses SQL Server ... then you need to make sure SQL Server is installed somewhere within network reach of your application.

Other alternatives to SQL Server include:

  • SQL Server embedded

  • Embedded databases like Sqlite (that's what Android uses, BTW)

  • Read and write your own flat file or XML file as a local "data store"

link|improve this answer
feedback

To begin with, you are not permitted to distribute sql server 2008. You can however distribute sql express 2008. With express you can distribute the MSI and chain it during installation. You may also want to look at Compact Edition. You need to make a choice of which sql version works best for your needs

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.