connection连接,connection下方有statement和preparestatement方法
对sql语句进行操作
Connection conn = JDBCUtils.getConnection();
PreparedStatement ps = conn.prepareStatement(sql)
增、删、改的方法 ps.execute();
查询操作 ResultSet rs = = ps.executeQuery();
详细了解请观看:
statement(Java 执行数据库操作的一个重要接口)_百度百科