Re: [WiX-users] SQL script execution in patch sample request

2011-08-09 Thread Nangai
Anybody having samples, please share. I am unable to execute SQL script during patch install and uninstall -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/SQL-script-execution-in-patch-sample-request-tp6663737p6667688.html Sent from the wix-users mai

Re: [WiX-users] SQL Script sequencing/committing issues

2009-12-03 Thread Jason Jibben
2009 1:50 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] SQL Script sequencing/committing issues Was this ever addressed? -Original Message- From: Jason Jibben [mailto:jason_jib...@starkey.com] Sent: Wednesday, November 18, 2009 8:46 AM

Re: [WiX-users] SQL Script sequencing/committing issues

2009-12-02 Thread Blair
Was this ever addressed? -Original Message- From: Jason Jibben [mailto:jason_jib...@starkey.com] Sent: Wednesday, November 18, 2009 8:46 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] SQL Script sequencing/committing issues Hello WiX-Users, I've been working on an installer

Re: [WiX-users] SQL Script Deployment

2009-08-28 Thread Neil Sleightholm
This is how I run a sql script: http://neilsleightholm.blogspot.com/search/label/SQL, although I don't drop on uninstall but that could be arranged. Neil -Original Message- From: Lourens Wepener [mailto:lourens.wepe...@avanade.com] Sent: 28 August 2009 16:42 To: wix-users@lists.sourcefor

Re: [WiX-users] SQL Script question

2008-05-06 Thread Christopher Karper
ed for > you. > > > > > > *From:* Christopher Karper [mailto:[EMAIL PROTECTED] > *Sent:* Tuesday, May 06, 2008 11:41 > *To:* Rob Mensching > *Cc:* wix-users@lists.sourceforge.net > *Subject:* Re: [WiX-users] SQL Script question > > > > Fair enough. I know that SQL use

Re: [WiX-users] SQL Script question

2008-05-06 Thread Rob Mensching
not very enticing to shove the SQL Script into a record and have it formatted for you. From: Christopher Karper [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2008 11:41 To: Rob Mensching Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] SQL Script question Fair enough. I know tha

Re: [WiX-users] SQL Script question

2008-05-06 Thread Christopher Karper
Fair enough. I know that SQL uses the square brackets itself, and I had just stripped those out since I don't use characters that require them in my SQL object names. I had also toyed with the idea of using a different bracket style for my properties. How about if I got all the records in the P

Re: [WiX-users] SQL Script question

2008-05-06 Thread Rob Mensching
Yeah.WcaGetPropertyString, looks up the Property name passed in and gets a value. You can't pass in "Please, resolve this [Property] for me" and get back "Please, resolve this PropertyValue for me". You'd have to process the SQL Script looking for [Property] strings and update them. To fu

Re: [WiX-users] SQL Script limit?

2007-01-24 Thread Albert van Peppen
Peppen Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Rob Mensching Verzonden: woensdag 24 januari 2007 16:15 Aan: Ian Couper CC: wix-users@lists.sourceforge.net Onderwerp: Re: [WiX-users] SQL Script limit? Wow, you have a SQL Script that takes an hour

Re: [WiX-users] SQL Script limit?

2007-01-24 Thread Rob Mensching
is not a great user experience. I'm just trying to understand what the WiX toolset could do to help. From: Ian Couper [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 24, 2007 6:25 AM To: Rob Mensching Cc: wix-users@lists.sourceforge.net Subject: RE: [WiX-users] SQL Script limit?

Re: [WiX-users] SQL Script limit?

2007-01-24 Thread Ian Couper
ubject: RE: [WiX-users] SQL Script limit? With the way that MSI works, you'll probably end up pushing the same 50 MB of strings around 3 or 4 times. That could take time. Also, if you don't have the latest WiX v2 code base, you could be hitting some old bugs in the SQL processing.

Re: [WiX-users] SQL Script limit?

2007-01-23 Thread Rob Mensching
With the way that MSI works, you'll probably end up pushing the same 50 MB of strings around 3 or 4 times. That could take time. Also, if you don't have the latest WiX v2 code base, you could be hitting some old bugs in the SQL processing. After that, you could try debugging through the code

Re: [WiX-users] SQL Script

2006-12-20 Thread Mike Dimmick
Dhaval Patel Sent: 20 December 2006 05:10 To: Rob Mensching; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] SQL Script I tried saving the SQL file as ANSI, UTF-8, Unicode, etc. The SQL script does get read in the memory, but the msi still blows up while executing the script. I ke

Re: [WiX-users] SQL Script

2006-12-19 Thread Michael Osmond
this point that I should probably stay away from WIX if I want to execute complex SQL queries? _ From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Fri, 15 Dec 2006 11:31:40 -0800 Subject: RE: [WiX-users] SQL Script Have you tried

Re: [WiX-users] SQL Script

2006-12-19 Thread Rob Mensching
ching; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] SQL Script I tried saving the SQL file as ANSI, UTF-8, Unicode, etc. The SQL script does get read in the memory, but the msi still blows up while executing the script. I keep running into the Error Executing Script bug - which I thi

Re: [WiX-users] SQL Script

2006-12-19 Thread Dhaval Patel
should probably stay away from WIX if I want to execute complex SQL queries? From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Fri, 15 Dec 2006 11:31:40 -0800Subject: RE: [WiX-users] SQL Script Have you tried saving the file as Unicode? Notepad (on XP) can do this when you do Save As->Encod

Re: [WiX-users] SQL Script

2006-12-12 Thread Mike Dimmick
You probably have a UTF-16 script without a leading Byte Order Mark (U+FEFF, the byte sequence 0xFF 0xFE for UTF-16 little-endian). Without the BOM, the SQL custom action assumes that the script is ANSI and converts using MultiByteToWideChar. If the data is actually UTF-16, the script will simply a

Re: [WiX-users] SQL Script

2006-12-12 Thread Rob Mensching
What version of the WiX toolset are you using? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dhaval Patel Sent: Monday, December 11, 2006 17:18 To: wix-users@lists.sourceforge.net Subject: [WiX-users] SQL Script I am a WIX newbie and I think I have been able to grasp most of the

Re: [WiX-users] SQL script

2006-08-27 Thread Frederik Carlier
As far as I know, that is "by design". The SqlScript element only executes the SQL script, it does not drop it into any directory. You may, however, include additional File elements that would do just that for you. For more information, see the on-line documentation (http://wix.sourceforge.net/ma