JDBC连接数据库五步骤: 一.加载驱动 Class.forName(“com.mysql.jdbc.Driver”); 二.建立连接 Connection conn = DriverManager.getConnection(“jdbc:mysql://localhost:8080/数据库名”,”root”,”root”); 三.编写SQL语句 String sql = SQL语句 四.获取SQL语句 获取静态SQL语句,通过Statement实例实现 执行动态SQL语句,通过prepared…