你这里的PS应该是PreparedStatement 他调用executeQuery()方法,晌敏并返回一个结果集。说白了就是跟数据库某一张具体的表产生交互,并获得其宴悔枝中的数据,获得该数据的结果集。 public ArrayList selectQuery(IMapper map,String sql,Object []params){ try { if(conn.isClosed()){ conn=getConnection(); } } catch (SQLException e) { System.out.println("建连接时出现异常,异常方法为:selectQuery()"); System.out.println("异常原因如下:"); e.printStackTrace(); return null; } PreparedStatement pstm=null; ArrayList al=null; ResultSet rs=null; try { pstm=conn.prepareStatement(sql); if(params!=null){ int len=params.length; for (int i = 0; i < len; i++) { pstm.setObject(1, params[i]); } } rs=pstm.executeQuery(); al=map.getAl(rs); return al; } catch (SQLException e) { System.out.println("查询过程中出现异常,异常前举方法为:selectQuery()"); System.out.println("异常原因如下:"); e.printStackTrace(); }finally{ try { rs.close(); pstm.close(); conn.close(); } catch (Exception e2) { System.out.println("关闭连接时出现异常,异常方法为:selectQuery()"); System.out.println("异常原因如下:"); e2.printStackTrace(); } } return null; }这是我写的一个DBManager 你可以作为参考
相关文章
-
PSP天神乱漫有几条线
2023-05-03 10:15 阅读(557) -
PS标题上的CS6是什么意思?
2023-04-30 14:54 阅读(611) -
ps是什么意思?
2023-04-30 05:47 阅读(630)
1 psychologically是什么意思
555 阅读
2 PSY·P的P什么意思
560 阅读
3 ps4pro玩战神1卡
606 阅读
4 PSP里的游戏<乐克乐克>的攻略
570 阅读
5 psp游戏机多少钱一个啊?
620 阅读