首先在mysql上创建数据库
目录
在编写Java代码之前要写一个driver.properties配置文件用来存放连接数据库必要的数据
//创建数据库
create database mydemo;
//创建表
create table useinfos(userid int primary key auto_increment not null,
username varchar(20) not null,
birthday date not null);
//为表添加数据
insert into useinfos values(1,'zs','1998-8-7'),
(2,'ls','1998-12-28'),
(3,'ww','2000-8-6');
//查看表
select * from useinfos;
创建完毕之后打开idea编写Java代码