HeidiSQL
Informations
Créateur | Messages |
---|---|
mihawk90
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 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. Captures d'écranCode source#!/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:
ContribuerMembre | Messages |
Dadu042 | Samedi 2 Novembre 2019 à 11:14 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe MessagesI 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 Nouveau code source#!/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 RéponsesEdité par Dadu042 |
LuigiTheHunter | Samedi 11 Mai 2019 à 11:15 |
LuigiTheHunter
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThere 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 Nouveau code source#!/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 Réponses |
mihawk90 | Vendredi 29 Mars 2019 à 19:29 |
mihawk90
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Messages
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 Nouveau code source#!/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 RéponsesSamedi 6 Avril 2019 à 15:34
Samedi 11 Mai 2019 à 11:23
Dimanche 30 Juin 2019 à 7:43
Edité par mihawk90 |
Lluís | Dimanche 16 Décembre 2018 à 19:48 |
Lluís
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
Lluís | Dimanche 16 Décembre 2018 à 19:45 |
Lluís
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
powercat | Lundi 5 Février 2018 à 17:45 |
powercat
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdded 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 Nouveau code source#!/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 RéponsesLundi 5 Février 2018 à 18:00
Dimanche 18 Février 2018 à 20:40
|
Jujubre | Mercredi 15 Novembre 2017 à 16:47 |
Jujubre
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesCurrent 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 Nouveau code source#!/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 Réponses |
nexter | Mercredi 7 Juin 2017 à 13:49 |
nexter
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesSubmitting 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 Nouveau code source#!/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 Réponses |
mihawk90 | Samedi 5 Décembre 2015 à 23:22 |
mihawk90
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesMissclicked 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 Nouveau code source#!/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 Réponses |
mihawk90 | Samedi 5 Décembre 2015 à 23:20 |
mihawk90
|
MessagesAs 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: Réponses |
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