Re: [WiX-users] SqlDatabase install optional and SqlString execute

2011-04-11 Thread Michael Osmond
neral discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] SqlDatabase install optional and SqlString execute Ok, thanks. I guess my question is when the locator is resolved. The scenario you described is exactly what I have. I just wasn't sure if the locator would try and reso

Re: [WiX-users] SqlDatabase install optional and SqlString execute

2011-04-11 Thread Mike Menaker
helps Michael -Original Message- From: Mike Menaker [mailto:mi...@voicebox.com] Sent: Tuesday, 12 April 2011 9:47 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] SqlDatabase install optional and SqlString execute The cancel will apply to only the DB creat

Re: [WiX-users] SqlDatabase install optional and SqlString execute

2011-04-11 Thread Michael Osmond
: Mike Menaker [mailto:mi...@voicebox.com] Sent: Tuesday, 12 April 2011 9:47 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] SqlDatabase install optional and SqlString execute The cancel will apply to only the DB creation, not to the whole installer, right

Re: [WiX-users] SqlDatabase install optional and SqlString execute

2011-04-11 Thread Mike Menaker
install optional and SqlString execute Mike, SqlDatabase has an option ConfirmOverwrite, if set to yes the installer will prompt if it finds a database already created, and allows you to cancel or continue. Using this option the installer only needs to deal with option 1 and you get 2 for free

Re: [WiX-users] SqlDatabase install optional and SqlString execute

2011-04-11 Thread Michael Osmond
Mike, SqlDatabase has an option ConfirmOverwrite, if set to yes the installer will prompt if it finds a database already created, and allows you to cancel or continue. Using this option the installer only needs to deal with option 1 and you get 2 for free. If you want to be defensive agains