ubuntu 下java连接mysql数据库
程序员文章站
2022-05-27 09:29:09
...
这篇文章是对的
https://m.linuxidc.com/Linux/2008-10/16872.htm
还有这篇,忽略报错useSSL=false
https://blog.csdn.net/qq_41785135/article/details/85118329
剩下的就是安装mysql和创建数据库
打开数据库
mysql -u root -p
创建数据库
create database lalalala;记得最后有分号
给出我的代码
import java.sql.*;
import java.util.Properties;
public class DBDemo
{
// The JDBC Connector Class.
private static final String dbClassName = "com.mysql.jdbc.Driver";
// Connection string. emotherearth is the database the program
// is connecting to. You can include user and password after this
// by adding (say) ?user=paulr&password=paulr. Not recommended!
private static final String CONNECTION =
"jdbc:mysql://127.0.0.1/peak_db?useSSL=false";
public static void main(String[] args) throws
ClassNotFoundException,SQLException
{
System.out.println(dbClassName);
// Class.forName(xxx) loads the jdbc classes and
// creates a drivermanager class factory
Class.forName(dbClassName);
// Properties for user and password. Here the user and password are both 'paulr'
Properties p = new Properties();
p.put("user","root");
p.put("password","123123");
// Now try to connect
Connection c = DriverManager.getConnection(CONNECTION,p);
System.out.println("It works !");
c.close();
}
}
下一篇: 什么颜色比较高贵?古人的“颜色等级观”!
推荐阅读
-
详解MySQL数据库--多表查询--内连接,外连接,子查询,相关子查询
-
详解使用navicat连接远程linux mysql数据库出现10061未知故障
-
Spring Boot 与 Kotlin 使用JdbcTemplate连接MySQL数据库的方法
-
使用数据库客户端工具Oracle SQL Developer加载第三方驱动连接mysql的方法
-
Ubuntu 18.04下mysql 8.0 安装配置方法图文教程
-
Java对MySQL数据库进行连接、查询和修改操作方法
-
node连接数据库如何输出(前端js连接mysql数据库的方法)
-
Java Web项目中连接Access数据库的配置方法
-
java 下执行mysql 批量插入的几种方法及用时
-
Ubuntu16.04 server下配置MySQL,并开启远程连接的方法