java 是怎样链接mysql数据库的
发布网友
发布时间:2022-04-09 16:25
我来回答
共2个回答
热心网友
时间:2022-04-09 17:54
https://zhidao.baidu.com/question/688851513235420724.html?fr=iks&word=java+mysql&ie=gbk
https://zhidao.baidu.com/question/178293575836636924.html?fr=iks&word=java+mysql&ie=gbk
上面两个都不错的例子
~~~~~~~~~
热心网友
时间:2022-04-09 19:12
你需要下载JDBC
https://dev.mysql.com/downloads/connector/j/
然后放在你的classpath里
在main里可以运行
String url = "jdbc:mysql://localhost:3306/javabase";
String username = "java";
String password = "password";
System.out.println("Connecting database...");
try (Connection connection = DriverManager.getConnection(url, username, password)) {
System.out.println("Database connected!");
} catch (SQLException e) {
throw new IllegalStateException("Cannot connect the database!", e);
}