Re: [WiX-users] Running SQL script without creating a database

2014-10-15 Thread pezmannen
I've managed to have sql:SqlDatabase inside a component without creating it: -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Running-SQL-script-without-creating-a-database-tp7597296p75

Re: [WiX-users] Running SQL script without creating a database

2014-10-14 Thread Brian Enderle
om a >> SqlString or SqlScript record. This allows MSI to install SqlScripts or >> SqlStrings to already existing databases on the machine. The install will >> fail if the database does not exist in these cases. >> >> >> _ >> Short replies here. Complete answers

Re: [WiX-users] Running SQL script without creating a database

2014-10-14 Thread Brian Enderle
t; fail if the database does not exist in these cases. > > > _ > Short replies here. Complete answers over there: > http://www.firegiant.com/ > > > > -Original Message- > From: Brian Enderle [mailto:bria...@gmail.com] > Sent: Tuesday, October 14, 201

Re: [WiX-users] Running SQL script without creating a database

2014-10-14 Thread Rob Mensching
an Enderle [mailto:bria...@gmail.com] Sent: Tuesday, October 14, 2014 7:33 AM To: WiX Users Subject: [WiX-users] Running SQL script without creating a database I have a script file that creates a couple of databases. I am trying to run this script from WiX as follows (parameters capture

[WiX-users] Running SQL script without creating a database

2014-10-14 Thread Brian Enderle
I have a script file that creates a couple of databases. I am trying to run this script from WiX as follows (parameters captured from GUI): When I run this WiX wants to create a database for me using the parameters specified. Is