Hi there to all Wix users.

I have two doubts regarding Wix that I would like to discuss with more
experienced users.

1. My boss wants that the current setup of our application ask to the
user if he wants to keep the application database and settings. I have
two separated components and I evaluate if the components are to
uninstall or not. The problem is that the Components uninstall run
always no mather the Condition values that are set. I saw the property
named Permanent but is no good for me because I want to give the
choise to the user.

        <Component Id="MyDataBase"
Guid="25DA3DAC-8B1C-441F-8291-66F77F9C3AF9" Transitive="yes">
          <SqlDatabase Id="TesteDB" User="User" Server="[SQLSERVER]"
Database="[DB]" CreateOnInstall="yes" ContinueOnError="yes"
DropOnInstall="no" DropOnUninstall="no">
          </SqlDatabase>
          <Condition>(INSTALL_DATABASE="1") OR
(UNINSTALL_DATABASE="1")</Condition>
        </Component>
        <Component Id="MySettings" Guid="66E0F6A2-1C00-49C7-8653-7A0324A07D3B">
          <File Id="ApplicationSettings" LongName="MySettings.config"
src="MySettings.config" Name="settings" DiskId="1" />
          <Condition>(INSTALL_SETTINGS="1") OR
(UNINSTALL_SETTINGS="1")</Condition>
        </Component>

2. This one I think that is a known Bug, but sincerely I don't know
the state of it. If I install a database on a server that already have
a database with the same name, and after the sql authentication is
performed an install error occur, the database is dropped from the
server. Any news of it?


Thanks to all.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to