Difference between revisions of "HeidiSQL"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Created page with 'HeidiSQL is an open-source GUI for developers using MySQL. It allows you to manage and browse your databases and tables from Windows. =Packages= =HeidiSQL 4.0= This version use…')
(No difference)

Revision as of 14:09, 17 March 2010

HeidiSQL is an open-source GUI for developers using MySQL. It allows you to manage and browse your databases and tables from Windows.

Packages

HeidiSQL 4.0

This version uses Inno Setup as it's installer so we can use the standard Inno Setup switches to do the install.

<?xml version="1.0" encoding="UTF-8"?>

<!-- 
Download Location: http://www.heidisql.com/download.php
Install Type: InnoSetup
http://unattended.sourceforge.net/InnoSetup_Switches_ExitCodes.html
-->

<packages>

	<package id="gplheidisql" 
	name="GPL HeidiSQL 4.0" 
	revision="0040" 
	reboot="false" 
	priority="1">
		<check type="uninstall" condition="exists" path="HeidiSQL 4.0" />
		<install cmd='"%SOFTWARE%\Tools\Database\GPL.HeidiSQL.4.0\HeidiSQL_4.0_Setup.exe" /sp- /silent /norestart' />
		<upgrade cmd='"%SOFTWARE%\Tools\Database\GPL.HeidiSQL.4.0\HeidiSQL_4.0_Setup.exe" /sp- /silent /norestart' />
		<remove cmd='"%PROGRAMFILES%\HeidiSQL\unins000.exe" /sp- /silent /norestart' />
	</package>
	
</packages>

External Links