如何将游标作为IN参数传递给存储过程

时间:2010-07-14 12:03:19

标签: hibernate spring stored-procedures

我想从我的xyz.java文件中将游标作为IN参数传递给存储过程。 我正在使用spring和hibernate。 你能帮帮我吗? 迫切需要。很快就会。

如果不能通过那么你可以帮助一些alernative。

三江源。

1 个答案:

答案 0 :(得分:0)

使用Spring Stuff调用存储过程..

enter code here : public class MyStoredProcedure extends StoredProcedure {

public MyStoredProcedure(){
}
public MyStoredProcedure(DataSource ds) {
    this.setDataSource(ds);
    this.setSql("procedure name");
    this.declareParameter(new SqlParameter("param", Types.VARCHAR));
    this.compile();
}

public void callProcedure() {
    Map<String, String> inParams = new HashMap<String, String>();
    inParams.put("param", "Good");
    try {
        execute(inParams);
    } catch (Exception e) {
        System.out.println("Error Man : " + e);
    }
}


public static void main(String[] args) {
    DriverManagerDataSource dataSource new DriverManagerDataSource("Driver", "url", "uname", "upass");
    try{
    MyStoredProcedure procedure = new MyStoredProcedure(dataSource);
    procedure.callProcedure();
    }catch(Exception exception){
        System.out.println("Eroooorrror : "+exception);
    }
}

}