Skip to content

Instantly share code, notes, and snippets.

@BartDM
Created November 21, 2013 09:36
Show Gist options
  • Save BartDM/7578681 to your computer and use it in GitHub Desktop.
Save BartDM/7578681 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"
xmlns:sql="http://schemas.microsoft.com/wix/SqlExtension">
<Fragment>
<Binary Id="CreateTablesBin" SourceFile="Database/CreateTables.sql"></Binary>
<Binary Id="FillTablesBin" SourceFile="Database/FillTables.sql"></Binary>
<util:User Id="SQLUserSA" Name="[DB_USER]" Password="[DB_PASSWORD]"></util:User>
<DirectoryRef Id="INSTALLFOLDER">
<Component Id="SqlComponent" Guid="8A1C82DB-1DD3-4FB5-8600-4F370FE1E04B">
<sql:SqlDatabase Id="MySqlDatabase" Database="[DB_DATABASE]" Server="[DB_SERVER]" CreateOnInstall="yes" DropOnUninstall="yes" User="SQLUserSA" ContinueOnError="no">
</sql:SqlDatabase>
<CreateFolder/>
</Component>
</DirectoryRef>
</Fragment>
</Wix>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment