星期四

JDBC连接数据库:

// 1.加载驱动(可省略)
Class.forName("com.mysql.jdbc.Driver");
// 2.用户信息和url
String url ="jdbc:mysql://localhost:3306/db2?characterEncoding=utf-8";

String username="root";
String password="1234";
// 3.连接成功,数据库对象 Connection
Connection connection = DriverManager.getConnection(url,username,password);
// 4.执行SQL对象Statement,执行SQL的对象
Statement statement = connection.createStatement();
// 5.执行SQL的对象去执行SQL,返回结果集
String sql = "SELECT *FROM t_class;";
// 6.释放连接

statement.close();

connection.close();

 

posted @ 2023-10-12 18:38  umiQa  阅读(2)  评论(0编辑  收藏  举报