2个回答
展开全部
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
返回查询结果集
你写好的方法 是传入list list中存储的是SQL语句中 预编译的内容 如 select * from xx where table1 =? and table2 =?
中问号 需要填写的内容 。
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
返回查询结果集
你写好的方法 是传入list list中存储的是SQL语句中 预编译的内容 如 select * from xx where table1 =? and table2 =?
中问号 需要填写的内容 。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询