提交 1c53e9bd 编写于 作者: J jurgen

NSIS uninstall fix

上级 87ce3291
......@@ -147,6 +147,7 @@
description="MySQL standard driver">
<file type="license" path="drivers/mysql/LICENSE.txt" url="http://dbeaver.jkiss.org/files/jdbc/drivers/mysql/LICENSE.txt"/>
<file type="jar" path="drivers/mysql/mysql-connector-java-5.1.22-bin.jar" url="http://dbeaver.jkiss.org/files/jdbc/drivers/mysql/mysql-connector-java-5.1.22-bin.jar"/>
<!--<file type="jar" path="drivers/mysql/jkiss-mysql-auth-1.0.0.jar" url="http://dbeaver.jkiss.org/files/jdbc/drivers/mysql/jkiss-mysql-auth-1.0.0.jar"/>-->
</driver>
</drivers>
<views>
......
......@@ -54,6 +54,11 @@ public class MySQLDataSourceProvider extends JDBCDataSourceProvider implements D
connectionsProps.put("zeroDateTimeBehavior", "convertToNull");
// Set utf-8 as default charset
connectionsProps.put("characterEncoding", "utf-8");
// Auth plugins
// connectionsProps.put("authenticationPlugins",
// "com.mysql.jdbc.authentication.MysqlClearPasswordPlugin," +
// "com.mysql.jdbc.authentication.MysqlOldPasswordPlugin," +
// "org.jkiss.dbeaver.ext.mysql.auth.DialogAuthenticationPlugin");
}
public static Map<String,String> getConnectionsProps() {
......
......@@ -310,6 +310,7 @@ Section "Uninstall"
Delete "$INSTDIR\license.txt"
Delete "$INSTDIR\*.log"
RMDir /r "$INSTDIR\configuration"
RMDir /r "$INSTDIR\features"
RMDir /r "$INSTDIR\plugins"
RMDir /r "$INSTDIR\drivers"
RMDir /r "$INSTDIR\jre"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册