I tried it now with dll's that are not in the Wix3.x tree but nothing 
changed - same error :(

Schrieken, Rene wrote:
> I'm not sure why this happens... but in Wix2.x there is also a
> scasched.dll which I can not find in the Wix3.x tree. Maybe this is
> related to the issue that not all files are included in either the
> binaries and/or the MSI.
>
> The source code still exists...
> http://wix.cvs.sourceforge.net/wix/wix/src/ca/serverca/
> not sure if it is build
>
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Chris
> Sent: Monday, August 20, 2007 9:58 AM
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] Error with WIX and SQL when executing light
>
> Hello,
> I still have the problem with 'lighting' my wix-sql-example (see below).
>
> Maybe you have any ideas?
> I get following error:
>
> light WixMondoSample.wixobj -ext WixSqlExtension.dll -ext WixUIExtension
> Microsoft (R) Windows Installer Xml Linker version 3.0.2925.0
> Copyright (C) Microsoft Corporation 2003. All rights reserved.
>
> C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(27) : 
> error LGHT0094 : Unresolved reference to symbol 'Binary:ScaSchedule' in 
> section 'Fragment:'.
> C:\delivery\Dev\wix\src\ext\sqlextension\wixlib\SqlExtension.wxs(28) : 
> error LGHT0094 : Unresolved reference to symbol 'Binary:ScaSchedule' in 
> section 'Fragment:'.
> -----------------------------------------------
>
> WXS:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";
>      xmlns:Sql="http://schemas.microsoft.com/wix/SqlExtension";
>  >
>     <Product Id="34d0f6de-2dff-4321-8e0b-926a86e98678"
>     UpgradeCode="9c8fcd7b-4632-4872-99ad-18394618cc89"
>     Name="Acme Sample Application" Language="1033" Version="1.0.0.0"
>     Manufacturer="Acme Software Ltd."
>   >
>         <Package InstallerVersion="200" Compressed="yes" />
>         <Media Id="1" Cabinet="WixMondoSample.cab" EmbedCab="yes" />
>
>     <WixVariable Id="WixUILicenseRtf" Value="license.rtf" />  
>     <WixVariable Id="WixUIDialogBmp" Value="test.bmp" />
>     <Binary Id="testsql" SourceFile=".\testsql.sql" />
>    
>     <Sql:SqlDatabase Id="db1" Server="." Database="TestWixDB" />
>    
>     <Directory Id="TARGETDIR" Name="SourceDir" FileSource=".\">
>       <Component Id="DatabaseUpdate" 
> Guid="6f051579-2950-42e3-9381-2f538ae1de08">
>         <Sql:SqlScript Id="SqlScript1"
>           SqlDb="db1"
>           ContinueOnError="no"
>           ExecuteOnInstall="yes"
>           ExecuteOnReinstall="yes"
>           Sequence="001"
>           BinaryKey="testsql"
>         />
>         <Sql:SqlString Id="SqlScript1"
>           SqlDb="db1"
>           ContinueOnError="yes"
>           ExecuteOnUninstall="yes"
>           Sequence="002"
>           SQL="update customer set surname = 'Clinton' where Vorname= 
> 'Bill'"
>         />
>       </Component>
>       <Component Id="ProductComponent" 
> Guid="13b4d0a3-2d1d-4f2d-8765-bd8043aee206">
>         <File Id="f1" Name="SampleFile.txt" />
>       </Component>
>         </Directory>
>
>         <Feature Id="ProductFeature" Title="Main Feature" Level="1">
>       <ComponentRef Id="DatabaseUpdate" />
>       <ComponentRef Id="ProductComponent" />
>         </Feature>
>
>     <UIRef Id="WixUI_Mondo" />
>
>   </Product>
> </Wix>
>
>
>
> ------------------------------------------------------------------------
> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> This e-mail and any attachment is for authorised use by the intended 
> recipient(s) only. It may contain proprietary material, confidential 
> information and/or be subject to legal privilege. It should not be copied, 
> disclosed to, retained or used by, any other party. If you are not an 
> intended recipient then please promptly delete this e-mail and any attachment 
> and all copies and inform the sender. Thank you.
>
>   


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to