MySQL 数据库名字、服务器地址、登录名

MySQL启动页


MySQL内容

服务器地址:127.0.0.1

端口号:3306

数据库名:user

用户:root

密码:你安装MySQL创建的密码

连接数据库:(确保数据库驱动加载好,数据库开启了)

 Connection connect = DriverManager.getConnection( 
              "jdbc:mysql://127.0.0.1:3306/user?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8&useSSL=false","root","密码"); 

你可能感兴趣的:(MySQL 数据库名字、服务器地址、登录名)