如何使用Weblogic数据源连接调用存储过程?

时间:2013-10-07 12:44:23

标签: sql weblogic

我有一个使用weblogic数据源连接调用已编译的sql存储过程的请求吗?

有解决方案吗?

2 个答案:

答案 0 :(得分:1)

以下oracle文档应指出正确的方向:

Configuring and Managing WebLogic JDBC

我假设你使用的是Oracle而不是SQL Server。

答案 1 :(得分:0)

感谢您的回复,我找到了解决方案。

我们可以使用以下代码:

private void callStoreProcedure() {
        Context ctx = null;
        Connection conn = null;
        ResultSet rs = null;
        Hashtable ht = new Hashtable();
        ht.put(Context.INITIAL_CONTEXT_FACTORY,   "weblogic.jndi.WLInitialContextFactory");
        ht.put(Context.PROVIDER_URL, "t3://localhost:7001");
        try {
              ctx = new InitialContext(ht);
              DataSource ds = (DataSource) ctx.lookup("wl_datasouce");
              conn = ds.getConnection();
              CallableStatement cstmt = conn.prepareCall("{call procedure(?)}");
              cstmt.registerOutParameter(1, OracleTypes.CURSOR); 
              cstmt.executeUpdate();
              rs = (ResultSet)cstmt.getObject(1);

              // print the results
              while (rs.next()) {
                  System.out.println(rs.getInt(1) + "\t" +
                      rs.getString(2) + "\t" +
                      rs.getString(3));
              }


        } catch (Exception e) {
              // a failure occurred log message;
              e.printStackTrace();
              }finally {
                    //cstmt.close();

                    try {
                          conn.close();
                    } catch (SQLException e1) {
                          // TODO Auto-generated catch block
                          e1.printStackTrace();
                    }
                    conn = null;
                    try {
                          rs.close();
                    } catch (SQLException e) {
                          // TODO Auto-generated catch block
                          e.printStackTrace();
                    }

        }
  }

这解决了我的问题。

我希望它也会帮助别人。