So I'm trying to build an installer in Wix 3.5.

My app need SQL CE 3.5 to run. It looks like MS's installer has an easy way to include this, but I'm not sure what I need to do in WiX.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

SQL CE supports an MSI or Private deployment model. If you opt for the MSI model so Windows Update can service it, you'll need a bootstrapper / chainer which is something WiX doesn't have yet. If you go for the deployment model you can just deploy the 7 sql ce files privately so your application can find them. Note if there's any future security fixes and what not you'll have to service them by deploying a new patch or installer for your application.

How to: Deploy a SQL Server Compact Edition Database with an Application

link|improve this answer
So there is no MSM module for SQL CE then. That's dissapointing. – Joel Barsotti Oct 21 '10 at 5:49
I generally wouldn't use a merge module even if there was one. That introduces additional servicing problems. – Christopher Painter Oct 21 '10 at 13:36
I have tried the private deployment of SQL CE and it doesn't seem to work when you're using Linq to SQL. – Phil Sep 27 '11 at 21:12
Actually found that article in my hours of searching. Tried it, and it almost works. The program wasn't able to create a new SQL CE database, and I wasn't able to test if it could connect to an already existing one. – Phil Sep 28 '11 at 15:51
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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