博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
借助预编译防止sql注入攻击
阅读量:5149 次
发布时间:2019-06-13

本文共 1859 字,大约阅读时间需要 6 分钟。

可重用的sql操作类

1 public ResultSet doQuery(String sql,Object[] params){ 2         ResultSet rs = null; 3         conn = this.getConnection(); 4         try{ 5             PreparedStatement pstmt = conn.prepareStatement(sql); 6             for(int i =0;i

 

1 public int doUpdate(String sql,Object[] params){ 2         int res = 0; 3         conn  = this.getConnection(); 4         try{ 5             PreparedStatement pstmt = conn.prepareStatement(sql); 6             for(int i=0;i

 

1 public List  doQueryList(String sql,Object []params){ 2         List list = new ArrayList(); 3         ResultSet rs = this.doQuery(sql, params); 4         try{ 5             ResultSetMetaData rsmd  = rs.getMetaData(); 6             int columnLength = rsmd.getColumnCount(); 7             while(rs.next()){ 8                 Map
map = new HashMap
(); 9 for(int i = 1;i<=columnLength;i++){10 map.put(rsmd.getColumnLabel(i), rs.getObject(i));11 }12 list.add(map);13 }14 }catch(Exception e){ 15 e.printStackTrace();16 }17 return list;18 }

 

查询所有信息的jsp关键代码如下

1 <% 2     DBCon dbc = new DBCon(); 3     String sql  = "select * from schema.admin"; 4     List list = dbc.doQueryList(sql, new Object[]{}); 5      6     %> 7     
map = (Map
)list.get(i);10 %>11
8 <%for(int i =0;i
12
13
14
15
16
17
18 <%}19 dbc.close();20 %>21
<%=map.get("id") %> <%=map.get("username") %> <%=map.get("password") %> ">删除 ">编辑
22 添加用户

更新、删除登操作同理,不再列出。

 

转载于:https://www.cnblogs.com/zhangqiuchi/p/6785513.html

你可能感兴趣的文章
css3实现旋转卡片
查看>>
Python_生成器generator
查看>>
python__int 部分内部功能介绍
查看>>
nginx / apache / tomcat /resin等 http server的benchmark性能测试方法
查看>>
spoj GSS系列简要题解
查看>>
python import引入不同路径下的模块
查看>>
Doomsday
查看>>
JavaScript中的this到底是什么?
查看>>
13. 为什么我们会需要 Pod?
查看>>
RTree算法Java实现 JSI RTree Library的调用实例 标签:jsi-rtree-library
查看>>
OC内存管理
查看>>
《Java编程思想》之多态(面向对象程序语言的第三基本特征)
查看>>
SpringMVC中的java.lang.ClassNotFoundException: org.aspectj.weaver.BCException 调试过程记录
查看>>
NioSocket相关知识
查看>>
java selenium (十四) 处理Iframe 中的元素
查看>>
JavaFX 中的属性绑定(例题)
查看>>
解决android中的eclipse升级问题,adt不能更新也无法卸载
查看>>
linux系统服务名称
查看>>
Invalid location of tag(th)
查看>>
输出重定向和多命令顺序执行(记录日志)
查看>>