1.mysql驱动(jdbc):驱动程序 放在项目library中或者tomcat/lib中,下载地址mysql官网
jdbc包括jdbc驱动程序和api
2.jdbc api:数据库访问的接口
3.jsp与数据库访问
4.流程 加载驱动(操作哪种数据库(mysql Oracle)Class.forName(DRIVER);publicstaticfinalString DRIVER="org.gjt.mm.mysql.Driver";
--->创建链接(Connect 链接到到数据库,通过url)DriverManager.getConnection(URL,USERNAME,USERNAME);
---->创建操作sql语句 Statement接口,通过Connection接口的createStatement()方法实例化,statement.executeUpdate(sql)来操作数据库
(- PreparedStatement接口
- 是Statement的子接口,属于预处理操作,与直接使用Statement不同的是,是先在数据表中准备好了一条SQL语句,但是此SQL语句的具体内容暂时不设置,而是之后在进行设置,即占住此位置等待用户设置
- String sql="insert into newtable(name,sex) values(?,?)";
- pStatement=conn.prepareStatement(sql); //实例化
- pStatement.setString(1, name);
- pStatement.setString(2, sex);
- pStatement.executeUpdate();
- 注意:开发中不建议使用Statement来操作数据库,而是使用PreparedStatement,因为Statement是完整的SQL语句
- 处理大数据对象——必须使用PreparedStatement)
--->接受查询结果- ResultSet接口- 接受所查询的记录,并显示内容,开发中要限制查询数量 - ResultSet rSet=statement.executeQuery(sql);