O tym problemie również pisałem na blogu tutaj. Oto fragment, który ilustruje, jak można to zrobić:
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();
}
}
Powyższe zostanie wydrukowane:
[abc, hello, so cool, null]
Zwróć uwagę, że ENABLE
/ DISABLE
ustawienie jest ustawieniem dla całego połączenia, więc możesz to zrobić również dla kilku instrukcji 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;");
}
}
Zauważ również, że spowoduje to pobranie stałego rozmiaru co najwyżej 1000 linii. Być może będziesz musiał zapętlić się w PL/SQL lub odpytać bazę danych, jeśli potrzebujesz więcej linii.
Uwaga dotycząca wywoływania DBMS_OUTPUT.GET_LINE
zamiast tego
Wcześniej istniała teraz usunięta odpowiedź, która sugerowała pojedyncze wywołania DBMS_OUTPUT.GET_LINE
zamiast tego zwraca jedną linię na raz. Przetestowałem podejście, porównując je z DBMS_OUTPUT.GET_LINES
, a różnice są drastyczne - nawet 30-krotnie wolniej w przypadku wywołania z JDBC (nawet jeśli nie ma dużej różnicy podczas wywoływania procedur z PL/SQL).
Tak więc podejście do zbiorczego przesyłania danych przy użyciu DBMS_OUTPUT.GET_LINES
zdecydowanie warto. Oto link do testu porównawczego:
https://blog.jooq.org/2017/12/18/the-cost-of-jdbc-server-roundtrips/