1

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

有什么解决办法吗?

4

2 回答 2

1

以下 oracle 文档应该为您指明正确的方向:

配置和管理 WebLogic JDBC

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

于 2013-10-07T12:50:20.967 回答
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();
                    }

        }
  }

这解决了我的问题。

我希望它也能帮助其他人。

于 2013-10-08T08:26:56.677 回答