This Domain(Admin5.com) is for Sale:

Spring 调用ORACLE数据库存储过程的结果集

时间:2007-12-23  来源:不详  作者:迈克DB

public void processRow(ResultSet rs) //回调处理
throws SQLException{
int count = rs.getMetaData().getColumnCount();
String[] header = new String[count];
for(int i=0;i<count;i )
header[i] = rs.getMetaData().getColumnName(i 1);
while(rs.next()){
HashMap<String,String> row = new HashMap(count 7);
for(int i=0;i<count;i )
row.put(header[i],rs.getString(i 1));
set.add(row);
}
}
}; //RowMapperResultReader作为输出参数的回调句柄
public SpringStoredProcedure(DataSource ds, String SQL) {
setDataSource(ds);
setSql(SQL);
} public void setOutParameter(String column,int type){
declareParameter(new SqlOutParameter(column, type,callback));
//利用回调句柄注册输出参数
}
public void setParameter(String column,int type){
declareParameter(new SqlParameter(column, type));
}

public void SetInParam(Map inParam){
this.inParam = inParam;
内容来自dedecms

} public Map execute() {
compile();
return execute(this.inParam);
}
} 下面我们看一下调用过程:
DriverManagerDataSource ds = .......; SpringStoredProcedure sp = new SpringStoredProcedure(ds,"PK_AREA_PUBLIC.area_search");

//注册参数类型,输入参数和输出参数同时注册,否则不能正确编译存储过程
sp.setParameter("vTarget_in",java.sql.Types.VARCHAR);
sp.setOutParameter("cur_result_out",oracle.jdbc.OracleTypes.CURSOR);
sp.compile();

//传入输入参数值
Map in = new HashMap();
in.put("vTarget_in","一个内容");
sp.SetInParam(in);

//执行存储过程
sp.execute(); Map m = sp.set.get(0);//ReultSet的第一条记录
//set定义为SpringStoredProcedure的属性用于接收回调时的数据
//假如有多个输出参数,应该在每个输出参数的回调方法中生成该输出
//参数对应的ArrayList,然后加到一个成员变量的数据结构中.

dedecms.com


Iterator i = m.keySet().iterator();
while(i.hasNext()){
String key = i.next().toString();
System.out.println(key "=>" m.get(key));
} 总之,上面的方法虽然解决了Spring中对Oracle存储过程的调用,但我极力不推荐这程复杂的处理  

看完这篇,您有何感觉呢?

文章评论

共有位Admini5网友发表了评论 查看完整内容

24小时热门信息