web-dev-qa-db-ja.com

JDBCを使用してdbms_output.get_linesから出力を取得する

データベースに追加のオブジェクトを作成せずに、Java JDBCを使用するアプリでOracleのdbms_output.get_linesから出力を取得するにはどうすればよいですか

12
Axel Fontaine

この問題についてもここでブログを書いています 。これを行う方法を示すスニペットを次に示します。

try (CallableStatement call = c.prepareCall(
    "declare "
  + "  num integer := 1000;" // Adapt this as needed
  + "begin "

  // You have to enable buffering any server output that you may want to fetch
  + "  dbms_output.enable();"

  // This might as well be a call to third-party stored procedures, etc., whose
  // output you want to capture
  + "  dbms_output.put_line('abc');"
  + "  dbms_output.put_line('hello');"
  + "  dbms_output.put_line('so cool');"

  // This is again your call here to capture the output up until now.
  // The below fetching the PL/SQL TABLE type into a SQL cursor works with Oracle 12c.
  // In an 11g version, you'd need an auxiliary SQL TABLE type
  + "  dbms_output.get_lines(?, num);"

  // Don't forget this or the buffer will overflow eventually
  + "  dbms_output.disable();"
  + "end;"
)) {
    call.registerOutParameter(1, Types.ARRAY, "DBMSOUTPUT_LINESARRAY");
    call.execute();

    Array array = null;
    try {
        array = call.getArray(1);
        System.out.println(Arrays.asList((Object[]) array.getArray()));
    }
    finally {
        if (array != null)
            array.free();
    }
}

上記は印刷されます:

[abc, hello, so cool, null]

ENABLE/DISABLE設定は接続全体の設定であるため、いくつかのJDBCステートメントでこれを行うこともできます。

try (Connection c = DriverManager.getConnection(url, properties);
     Statement s = c.createStatement()) {

    try {
        s.executeUpdate("begin dbms_output.enable(); end;");
        s.executeUpdate("begin dbms_output.put_line('abc'); end;");
        s.executeUpdate("begin dbms_output.put_line('hello'); end;");
        s.executeUpdate("begin dbms_output.put_line('so cool'); end;");

        try (CallableStatement call = c.prepareCall(
            "declare "
          + "  num integer := 1000;"
          + "begin "
          + "  dbms_output.get_lines(?, num);"
          + "end;"
        )) {
            call.registerOutParameter(1, Types.ARRAY, "DBMSOUTPUT_LINESARRAY");
            call.execute();

            Array array = null;
            try {
                array = call.getArray(1);
                System.out.println(Arrays.asList((Object[]) array.getArray()));
            }
            finally {
                if (array != null)
                    array.free();
            }
        }
    }
    finally {
        s.executeUpdate("begin dbms_output.disable(); end;");
    }
}

また、これは最大1000行の固定サイズをフェッチすることにも注意してください。さらに行が必要な場合は、PL/SQLでループするか、データベースをポーリングする必要があります。

代わりにDBMS_OUTPUT.GET_LINEを呼び出すことに関する注意

以前は、削除された回答があり、代わりにDBMS_OUTPUT.GET_LINEへの個別の呼び出しを提案しました。これは、一度に1行を返します。私はそれをDBMS_OUTPUT.GET_LINESと比較するアプローチをベンチマークしました、そしてその違いは劇的です-JDBCから呼び出されるとき(PL/SQLからプロシージャを呼び出すときに実際に大きな違いがなくても)最大30倍遅くなります。

したがって、DBMS_OUTPUT.GET_LINESを使用した一括データ転送アプローチは、間違いなく価値があります。ベンチマークへのリンクは次のとおりです。

https://blog.jooq.org/2017/12/18/the-cost-of-jdbc-server-roundtrips/

20
Lukas Eder