JUNIT4显示成功了,但数据库没有数据这是怎么回事啊
输出的SQL语句是:
drop table if exists STUDENTS
drop table if exists USERS
create table STUDENTS (
sid varchar(8) not null,
sname varchar(255),
gender varchar(255),
birthday date,
address varchar(255),
primary key (sid)
)
create table USERS (
uid integer not null auto_increment,
username varchar(255),
password varchar(255),
primary key (uid)
)