06 2021 档案

摘要:import java.sql.*; public class JdbcDemo2 { public static void main(String[] args) throws SQLException { //创建连接 Connection con = DriverManager.getConn 阅读全文
posted @ 2021-06-12 14:57 一只带不动的小菜鸡
摘要:JDBC六步 1.注册驱动 2.创建连接 3.获取操作sql语句对象 4.执行sql语句(并接收结果集) (5.处理结果集) 6.关闭资源,(先开后关), `import java.sql.*; public class JdbcDemo { public static void main(Stri 阅读全文
posted @ 2021-06-10 16:54 一只带不动的小菜鸡