连接mysql数据库 解决时区问题

连接mysql时(如果用sqldeveloper连接记得先去官网下载一个连接数据库驱动,然后点工具——首选项——数据库——第三方…——添加条目)
显示the sever time zone value……
是因为mysql默认的时区比东八区少了八个小时,所以要修改mysql的系统时区
可以使用两个办法去修改
1、第一个是使用命令行,打开mysql command line client,命令行登录mysql,软件配置改不了的话,直接改mysql的时区
mysql> SET GLOBAL time_zone="+8:00";

2、第二个是找到sqldeveloper.conf文件,按照以下路径去找到并修改
① Go to the installation directory of Oracle SQL
Developer.
②Open the file located at:
sqldeveloper/bin/sqldeveloper.conf.
③ At the end of file, add the following line:
AddVMOption -Duser.timezone=GMT-4
第二个办法记得设置记事本默认打开方式为conf格式

你可能感兴趣的:(笔记)