Release SQL CE with the project cab file

  • Thread starter Thread starter Timo Meier
  • Start date Start date
T

Timo Meier

Hi,
is it possible to release the sql server ce with my project.cab file.
So that the user has to install only one cab file instead of
sqlce.ppc.arm.cab and myProject.cab?
 
yes if you create your own package, include sqlce cab file as a file in your
new package and execute wceload.exe "path to sqlce.ppc.arm.cab"

I use 3rd party e-pocketsetup to do this...

there may be other ways

regards,

éric
 
I installed ePocketsetup2003 trial and chose "VS.NET Project Wizard".
Later in the installation wizard I chose: "Import a VS.NET with the .Net
Framework"

But my setup wont install sqlce and compactframework.
Is there something I have to consider?

regards
timo
 
In device files make sure you include the sqlce cab file and place it in the
Windows directory

In Click Script> Device Events> On Install exit add an execute program
action
Program Path = %WinDir%\wceload.exe and
Parameter = "%WinDir%\sqlce.ppc3.arm.CAB"

Note be sure not to include any extra spaces at the end of the program path
or parameter argument or it will fail.

Write me an email if you need more details

éric
 
Back
Top