pycharm连接数据库MySQL(pycharm充当数据库的客户端)
pycharm中找数据库的三种方式
下载database插件
时区错误
Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' property manually.
如果出现时区错误的话,有俩种不过方法
方法1
jdbc:mysql://localhost:3306?serverTimezone=GMT
在URL的后面添加?serverTimezone=GMT,但是比较麻烦,每次都要进行配置时区,建议采用方法二
方法2配置时区
连接数据库成功和会出现的问题
pycharm连接数据库sqlite
一共两步