数据库版本是8.0的
public class MySQL {
static {
try {
Class.forName("com.mysql.cj.jdbc.Driver");
} catch (ClassNotFoundException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
public static Connection getcon() {
Connection con=null;
try {
con=DriverManager.getConnection
("jdbc:mysql://localhost:3306/taobaodb?useSSL=false&serverTimezone=Asia/Shanghai", "root", "123456");
} catch (SQLException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
return con;
}
public static void main(String[] args) {
Connection con=getcon();
Statement stmt;
try {
stmt = con.createStatement();
ResultSet rs=stmt.executeQuery("select 用户名 from user_info");
while(rs.next()) {
System.out.println(rs.getString(1));
}
rs.close();
stmt.close();
} catch (SQLException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}finally {
try {
con.close();
} catch (SQLException e) {
// TODO 自动生成的 catch 块
}
}
}
}
8.0版本的数据库 Class.forName(“com.mysql.cj.jdbc.Driver”);