DataGrip创建MySQL数据库与使用


打开DataGrip创建一个MySQL数据库

DataGrip创建MySQL数据库与使用_第1张图片




打开数据库的配置

会提示安装驱动,数据库的版本需要与驱动版本一致.

自己在官网下载MySQL驱动.

DataGrip创建MySQL数据库与使用_第2张图片
DataGrip创建MySQL数据库与使用_第3张图片

若不一致,需要下载驱动 http://central.maven.org/maven2/mysql/mysql-connector-java/




Test Connection

DataGrip创建MySQL数据库与使用_第4张图片

若出现问题,查看问题报错,可能是

java.sql.SQLException: The server time zone value ‘Öйú±ê׼ʱ¼ä’ is
unrecognized or represents more than one time zone. You must configure
either the server or JDBC driver (via the serverTimezone configuration
property) to use a more specifc time zone value if you want to utilize
time zone support.

_Server returns invalid timezone. Go to ‘Advanced’ tab and set ‘serverTimezon’




解决方法:

设置整个数据库的时区,可以采用sql来完成:

在这里插入图片描述
mysql > show variables like ‘%time_zone%’;

mysql > set global time_zone=’+8:00’;




简单使用

DataGrip创建MySQL数据库与使用_第5张图片
创建一个students的表名,插入一些数据并进行查询。

无法启动mysql

你可能感兴趣的:(DataGrip创建MySQL数据库与使用)