jsp+mysql使用原生jdbc步骤:
1.首先加载驱动。
DriverManager.registerDriver(new com.mysql.jdbc.Driver());
2.获取Connection链接
//unicode=true&&Encoding=UTF-8"指定存取数据时字符编码格式
Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/Login?unicode=true&&characterEncoding=UTF-8","root","123456");
3.由Connection获取PreparedStatement或Statement
String sql=“select * from tb_user where userId=?";
int id=request.getParament("id");
PreparedStatement stmt=conn.prepareStatement(sql);
stmt.setInt(1,id); //设置sql语句的第一个?参数为id
4.执行sql语句获得结果集,将结果集进行逻辑处理或展示
ResultSet rs=stmt.excuteQuery();
...
deal....
...
5.关闭相关链接。注意链接使用后一定关闭链接
if(conn!=null) { try { conn.close(); conn=null; } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } if(stmt!=null) { try { stmt.close(); stmt=null; } catch (Exception e) { e.printStackTrace(); } }
if(rs!=null) { try { rs.close(); rs=null; } catch (Exception e) { e.printStackTrace(); } }