永发信息网

关于在JAVA中执行查询语句

答案:2  悬赏:40  手机版
解决时间 2021-04-07 09:38
  • 提问者网友:沉默的哀伤
  • 2021-04-06 10:29
关于在JAVA中执行查询语句
最佳答案
  • 五星知识达人网友:枭雄戏美人
  • 2021-04-06 10:47
public ResultSet getResult(Connection conn,String strSql){
try{
PreparedStatement select_stm=conn.prepareStatement(
strSql);
ResultSet result=select_stm.executeQuery();
return result;
}catch(Exception e){
FileManage.getInstence().writeLog(this.getClass().getName()+e.getLocalizedMessage());
return null;
}
}

参数:sql 语句和连接 conn

返回查询结果集

你写好的方法 是传入listlist中存储的是SQL语句中 预编译的内容如 select * from xx where table1 =? and table2 =?
中问号 需要填写的内容 。
全部回答
  • 1楼网友:持酒劝斜阳
  • 2021-04-06 11:48
不是都写好了么,Map<String,Object> map = new jdbcutils().findsimpleresult("select * from users",这个list作用不明)
追问:我编写老是出问题,你能帮我写个测试类么,尴尬~
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯