HeidiSQL
Informations
Creator | Message |
---|---|
mihawk90
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 4 DescriptionHeidiSQL (Wikipedia), previously known as MySQL-Front, is a free and open source client, or frontend for MySQL (and for its forks like MariaDB and Percona Server), Microsoft SQL Server and PostgreSQL. Website. ScreenshotsSource code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2019-11-02) # Wine version used : system # Distribution used to test : Xubuntu 19.04 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : # CHANGELOG # [Tarulia] (2015-12-02) # First script. # [...] # ... # [Dadu042] (2019-11-02) # Note: I tested installation with 'HeidiSQL_10.2.0.5599_Setup.exe' (system Wine: 4.0.0) but then I had not a SQL DB to connect to. # - Remove feature 'install from download' (because the link break again, file removed by the publisher). # - Add feature 'install from local'. # - Add warning message about fixme-all. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" # FILE="HeidiSQL_10.1.0.5464_Setup.exe" # MD5="9e82f9dad7ff68b428d9928d6863f69c" POL_SetupWindow_Init POL_SetupWindow_SetID 2651 POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS "win7" # POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_SetupWindow_message "WARNING!\n \n When asked to select a theme, make sure you select \"Use default Windows theme\", because WINE is not able to handle the \"Dark Material theme\"!\n \n If you are using a dark system theme, after the installation go to the WINE configuration and in the Staging tab select \"Enable GTK3 Theming\" (KDE users can change the GTK theme in System Settings > Application Style > GTK). GTK3 Theming may not be perfect however." "$TITLE" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "heidisql.exe" "$TITLE" "" "" "Development;Database" POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to let POL/POM write a huge log file, you may type \ninto Debug flags : fixme-all')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Saturday 2 November 2019 at 11:14 |
Dadu042
|
InformationThis update has been approved by the team. MessageI have also changed the description and removed some useless screenshots. Differences@@ -1,40 +1,59 @@ #!/bin/bash # Date : (2015-12-02 16-00) -# Last revision : (2019-03-29 19-30) +# Last revision : (2019-11-02) # Wine version used : system -# Distribution used to test : Fedora 29 +# Distribution used to test : Xubuntu 19.04 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : + +# CHANGELOG +# [Tarulia] (2015-12-02) +# First script. +# [...] +# ... +# [Dadu042] (2019-11-02) +# Note: I tested installation with 'HeidiSQL_10.2.0.5599_Setup.exe' (system Wine: 4.0.0) but then I had not a SQL DB to connect to. +# - Remove feature 'install from download' (because the link break again, file removed by the publisher). +# - Add feature 'install from local'. +# - Add warning message about fixme-all. + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="HeidiSQL" PREFIX="heidisql" -FILE="HeidiSQL_10.1.0.5464_Setup.exe" -MD5="9e82f9dad7ff68b428d9928d6863f69c" - +# FILE="HeidiSQL_10.1.0.5464_Setup.exe" +# MD5="9e82f9dad7ff68b428d9928d6863f69c" + POL_SetupWindow_Init POL_SetupWindow_SetID 2651 POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS "win7" -POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" + +# POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" + + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" POL_SetupWindow_message "WARNING!\n \n -When asked to select a theme, make sure you select \"Use default Windows theme\", as WINE is not able to handle the \"Dark Material theme\"!\n -\n -If you are using a dark system theme, after the installation go to the WINE configuration and in the Staging tab select \"Enable GTK3 Theming\" (KDE users can change the GTK theme in System Settings > Application Style > GTK)\n +When asked to select a theme, make sure you select \"Use default Windows theme\", because WINE is not able to handle the \"Dark Material theme\"!\n \n -GTK3 Theming may not be perfect however." "$TITLE" - -POL_Wine_WaitBefore "$TITLE" -POL_Wine "$FILE" +If you are using a dark system theme, after the installation go to the WINE configuration and in the Staging tab select \"Enable GTK3 Theming\" (KDE users can change the GTK theme in System Settings > Application Style > GTK). GTK3 Theming may not be perfect however." "$TITLE" + POL_Wine start /unix "$SETUP_EXE" + POL_Wine_WaitExit "$TITLE" + POL_Shortcut "heidisql.exe" "$TITLE" "" "" "Development;Database" + +POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to let POL/POM write a huge log file, you may type \ninto Debug flags : fixme-all')" "$TITLE" + POL_SetupWindow_Close -exit +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2019-11-02) # Wine version used : system # Distribution used to test : Xubuntu 19.04 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : # CHANGELOG # [Tarulia] (2015-12-02) # First script. # [...] # ... # [Dadu042] (2019-11-02) # Note: I tested installation with 'HeidiSQL_10.2.0.5599_Setup.exe' (system Wine: 4.0.0) but then I had not a SQL DB to connect to. # - Remove feature 'install from download' (because the link break again, file removed by the publisher). # - Add feature 'install from local'. # - Add warning message about fixme-all. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" # FILE="HeidiSQL_10.1.0.5464_Setup.exe" # MD5="9e82f9dad7ff68b428d9928d6863f69c" POL_SetupWindow_Init POL_SetupWindow_SetID 2651 POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS "win7" # POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_SetupWindow_message "WARNING!\n \n When asked to select a theme, make sure you select \"Use default Windows theme\", because WINE is not able to handle the \"Dark Material theme\"!\n \n If you are using a dark system theme, after the installation go to the WINE configuration and in the Staging tab select \"Enable GTK3 Theming\" (KDE users can change the GTK theme in System Settings > Application Style > GTK). GTK3 Theming may not be perfect however." "$TITLE" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "heidisql.exe" "$TITLE" "" "" "Development;Database" POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to let POL/POM write a huge log file, you may type \ninto Debug flags : fixme-all')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesEdited by Dadu042 |
LuigiTheHunter | Saturday 11 May 2019 at 11:15 |
LuigiTheHunter
|
WarningThis update has not been approved yet by the team. MessageThere is a problem. That this old version is not downloadable anymore. Differences@@ -12,7 +12,7 @@ TITLE="HeidiSQL" PREFIX="heidisql" -FILE="HeidiSQL_9.5.0.5196_Setup.exe" +FILE="HeidiSQL_10.1.0.5464_Setup.exe" MD5="0c2f1f2f309e112925fbe01573a5c738" POL_SetupWindow_Init New source code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2015-12-02 16-00) # Wine version used : system # Distribution used to test : Kubuntu 15.10 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" FILE="HeidiSQL_10.1.0.5464_Setup.exe" MD5="0c2f1f2f309e112925fbe01573a5c738" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS winxp POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" POL_Wine_WaitBefore "$TITLE" POL_Wine "$FILE" POL_Shortcut "heidisql.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
mihawk90 | Friday 29 March 2019 at 19:29 |
mihawk90
|
WarningThis update has not been approved yet by the team. Message
Differences@@ -1,8 +1,8 @@ #!/bin/bash # Date : (2015-12-02 16-00) -# Last revision : (2015-12-02 16-00) +# Last revision : (2019-03-29 19-30) # Wine version used : system -# Distribution used to test : Kubuntu 15.10 +# Distribution used to test : Fedora 29 # Author : Tarulia # Script licence : # Program licence : GPL @@ -12,21 +12,29 @@ TITLE="HeidiSQL" PREFIX="heidisql" -FILE="HeidiSQL_9.5.0.5196_Setup.exe" -MD5="0c2f1f2f309e112925fbe01573a5c738" +FILE="HeidiSQL_10.1.0.5464_Setup.exe" +MD5="9e82f9dad7ff68b428d9928d6863f69c" POL_SetupWindow_Init -POL_Debug_Init +POL_SetupWindow_SetID 2651 POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate -Set_OS winxp +Set_OS "win7" POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" +POL_SetupWindow_message "WARNING!\n +\n +When asked to select a theme, make sure you select \"Use default Windows theme\", as WINE is not able to handle the \"Dark Material theme\"!\n +\n +If you are using a dark system theme, after the installation go to the WINE configuration and in the Staging tab select \"Enable GTK3 Theming\" (KDE users can change the GTK theme in System Settings > Application Style > GTK)\n +\n +GTK3 Theming may not be perfect however." "$TITLE" + POL_Wine_WaitBefore "$TITLE" POL_Wine "$FILE" -POL_Shortcut "heidisql.exe" "$TITLE" +POL_Shortcut "heidisql.exe" "$TITLE" "" "" "Development;Database" POL_SetupWindow_Close exit New source code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2019-03-29 19-30) # Wine version used : system # Distribution used to test : Fedora 29 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" FILE="HeidiSQL_10.1.0.5464_Setup.exe" MD5="9e82f9dad7ff68b428d9928d6863f69c" POL_SetupWindow_Init POL_SetupWindow_SetID 2651 POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS "win7" POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" POL_SetupWindow_message "WARNING!\n \n When asked to select a theme, make sure you select \"Use default Windows theme\", as WINE is not able to handle the \"Dark Material theme\"!\n \n If you are using a dark system theme, after the installation go to the WINE configuration and in the Staging tab select \"Enable GTK3 Theming\" (KDE users can change the GTK theme in System Settings > Application Style > GTK)\n \n GTK3 Theming may not be perfect however." "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$FILE" POL_Shortcut "heidisql.exe" "$TITLE" "" "" "Development;Database" POL_SetupWindow_Close exit RepliesSaturday 6 April 2019 at 15:34
Saturday 11 May 2019 at 11:23
Sunday 30 June 2019 at 7:43
Edited by mihawk90 |
Lluís | Sunday 16 December 2018 at 19:48 |
Lluís
|
WarningThis update has not been approved yet by the team. Differences@@ -12,8 +12,8 @@ TITLE="HeidiSQL" PREFIX="heidisql" -FILE="HeidiSQL_9.3.0.4984_Setup.exe" -MD5="f6d1ad1cd23a74e5fc4f20d3c1e4bb58" +FILE="HeidiSQL_9.5.0.5196_Setup.exe" +MD5="0c2f1f2f309e112925fbe01573a5c738" POL_SetupWindow_Init POL_Debug_Init New source code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2015-12-02 16-00) # Wine version used : system # Distribution used to test : Kubuntu 15.10 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" FILE="HeidiSQL_9.5.0.5196_Setup.exe" MD5="0c2f1f2f309e112925fbe01573a5c738" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS winxp POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" POL_Wine_WaitBefore "$TITLE" POL_Wine "$FILE" POL_Shortcut "heidisql.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
Lluís | Sunday 16 December 2018 at 19:45 |
Lluís
|
WarningThis update has not been approved yet by the team. Differences@@ -12,8 +12,8 @@ TITLE="HeidiSQL" PREFIX="heidisql" -FILE="HeidiSQL_9.3.0.4984_Setup.exe" -MD5="f6d1ad1cd23a74e5fc4f20d3c1e4bb58" +FILE="HeidiSQL_9.5.0.5196_Setup.exe" +MD5="0c2f1f2f309e112925fbe01573a5c738" POL_SetupWindow_Init POL_Debug_Init New source code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2015-12-02 16-00) # Wine version used : system # Distribution used to test : Kubuntu 15.10 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" FILE="HeidiSQL_9.5.0.5196_Setup.exe" MD5="0c2f1f2f309e112925fbe01573a5c738" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS winxp POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" POL_Wine_WaitBefore "$TITLE" POL_Wine "$FILE" POL_Shortcut "heidisql.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
powercat | Monday 5 February 2018 at 17:45 |
powercat
|
WarningThis update has not been approved yet by the team. MessageAdded link to new setup file and changed md5 for new version as of HeidiSQL 9.5 (19 Dec 2017) Differences@@ -12,8 +12,8 @@ TITLE="HeidiSQL" PREFIX="heidisql" -FILE="HeidiSQL_9.3.0.4984_Setup.exe" -MD5="f6d1ad1cd23a74e5fc4f20d3c1e4bb58" +FILE="HeidiSQL_9.5.0.5196_Setup.exe" +MD5="0c2f1f2f309e112925fbe01573a5c738" POL_SetupWindow_Init POL_Debug_Init New source code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2015-12-02 16-00) # Wine version used : system # Distribution used to test : Kubuntu 15.10 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" FILE="HeidiSQL_9.5.0.5196_Setup.exe" MD5="0c2f1f2f309e112925fbe01573a5c738" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS winxp POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" POL_Wine_WaitBefore "$TITLE" POL_Wine "$FILE" POL_Shortcut "heidisql.exe" "$TITLE" POL_SetupWindow_Close exit RepliesMonday 5 February 2018 at 18:00
Sunday 18 February 2018 at 20:40
|
Jujubre | Wednesday 15 November 2017 at 16:47 |
Jujubre
|
WarningThis update has not been approved yet by the team. MessageCurrent installer not aviable, here is 9.4 version. Differences@@ -12,8 +12,8 @@ TITLE="HeidiSQL" PREFIX="heidisql" -FILE="HeidiSQL_9.3.0.4984_Setup.exe" -MD5="f6d1ad1cd23a74e5fc4f20d3c1e4bb58" +FILE="HeidiSQL_9.4.0.5125_Setup.exe" +MD5="468f82e7a7c5e8bf3c45c1e29c2ddfc8" POL_SetupWindow_Init POL_Debug_Init New source code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2015-12-02 16-00) # Wine version used : system # Distribution used to test : Kubuntu 15.10 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" FILE="HeidiSQL_9.4.0.5125_Setup.exe" MD5="468f82e7a7c5e8bf3c45c1e29c2ddfc8" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS winxp POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" POL_Wine_WaitBefore "$TITLE" POL_Wine "$FILE" POL_Shortcut "heidisql.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
nexter | Wednesday 7 June 2017 at 13:49 |
nexter
|
WarningThis update has not been approved yet by the team. MessageSubmitting the latest version since HeidiSQL_9.3.0.4984_Setup.exe doesn't exist on the website any longer. Differences@@ -12,8 +12,8 @@ TITLE="HeidiSQL" PREFIX="heidisql" -FILE="HeidiSQL_9.3.0.4984_Setup.exe" -MD5="f6d1ad1cd23a74e5fc4f20d3c1e4bb58" +FILE="HeidiSQL_9.4.0.5125_Setup.exe" +MD5="468f82e7a7c5e8bf3c45c1e29c2ddfc8" POL_SetupWindow_Init POL_Debug_Init New source code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2015-12-02 16-00) # Wine version used : system # Distribution used to test : Kubuntu 15.10 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" FILE="HeidiSQL_9.4.0.5125_Setup.exe" MD5="468f82e7a7c5e8bf3c45c1e29c2ddfc8" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS winxp POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" POL_Wine_WaitBefore "$TITLE" POL_Wine "$FILE" POL_Shortcut "heidisql.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
mihawk90 | Saturday 5 December 2015 at 23:22 |
mihawk90
|
WarningThis update has not been approved yet by the team. MessageMissclicked and actually hit the Send button instead of the Code Spoiler This is basically copy/paste from Mp3tag, except that I removed the LunaTheme download Differences@@ -0,0 +1,32 @@ +#!/bin/bash +# Date : (2015-12-02 16-00) +# Last revision : (2015-12-02 16-00) +# Wine version used : system +# Distribution used to test : Kubuntu 15.10 +# Author : Tarulia +# Script licence : +# Program licence : GPL +# Depend : +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="HeidiSQL" +PREFIX="heidisql" +FILE="HeidiSQL_9.3.0.4984_Setup.exe" +MD5="f6d1ad1cd23a74e5fc4f20d3c1e4bb58" + +POL_SetupWindow_Init +POL_Debug_Init +POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate +Set_OS winxp +POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" + +POL_Wine_WaitBefore "$TITLE" +POL_Wine "$FILE" + +POL_Shortcut "heidisql.exe" "$TITLE" +POL_SetupWindow_Close +exit New source code#!/bin/bash # Date : (2015-12-02 16-00) # Last revision : (2015-12-02 16-00) # Wine version used : system # Distribution used to test : Kubuntu 15.10 # Author : Tarulia # Script licence : # Program licence : GPL # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="HeidiSQL" PREFIX="heidisql" FILE="HeidiSQL_9.3.0.4984_Setup.exe" MD5="f6d1ad1cd23a74e5fc4f20d3c1e4bb58" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.heidisql.com/" "Tarulia" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate Set_OS winxp POL_Download "http://www.heidisql.com/installers/$FILE" "$MD5" POL_Wine_WaitBefore "$TITLE" POL_Wine "$FILE" POL_Shortcut "heidisql.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
mihawk90 | Saturday 5 December 2015 at 23:20 |
mihawk90
|
MessageAs suggested in https://www.playonlinux.com/en/topic-13596.html#m56306 Title: HeidiSQL Description: HeidiSQL, previously known as MySQL-Front, is a free and open source client, or frontend for MySQL (and for its forks like MariaDB and Percona Server), Microsoft SQL Server and PostgreSQL. HeidiSQL is developed by German programmer Ansgar Becker and a few other contributors in Delphi. Its feature set is sufficient for most common and advanced database, table and data record operations, but it remains in active development to move towards the full functionality expected in a MySQL frontend. Screenshots & Icons: Replies |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com