W jdbc
możesz parsować i wykonywać bloki PL/SQL za pomocą out
zmienne. Możesz przygotować oświadczenie, które można wywołać, takie jak:
declare
x foo_type;
begin
x := foo_type(5);
x.proc(10);
? := x.func(2);
end;
Następnie możesz użyć CallableStatement.registerOutParameter
a po wykonaniu instrukcji użyj odpowiedniego get
funkcja do pobrania wartości.
Możesz uzyskać bezpośredni dostęp do FOO_TYPE
wpisz bezpośrednio w javie, ale czy na pewno chcesz to zrobić? Zobacz poniżej działający przykład:
SQL> create or replace and compile java source named "TestOutParam" as
2 import java.sql.*;
3 import oracle.sql.*;
4 import oracle.jdbc.driver.*;
5
6 public class TestOutParam {
7
8 public static int get() throws SQLException {
9
10 Connection conn =
11 new OracleDriver().defaultConnection();
12
13 StructDescriptor itemDescriptor =
14 StructDescriptor.createDescriptor("FOO_TYPE",conn);
15
16 OracleCallableStatement call =
17 (OracleCallableStatement) conn.prepareCall("declare\n"
18 + " x foo_type;\n"
19 + "begin\n"
20 + " x := foo_type(5);\n"
21 + " x.proc(10);\n"
22 + " ? := x;\n"
23 + "end;\n");
24
25 call.registerOutParameter(1, OracleTypes.STRUCT, "FOO_TYPE");
26
27 call.execute();
28
29 STRUCT myObj = call.getSTRUCT(1);
30
31 Datum[] myData = myObj.getOracleAttributes();
32
33 return myData[0].intValue();
34
35 }
36 }
37 /
To jest klasa testowa pokazująca, jak można użyć metody registerOutParameter
na obiekcie SQL, nazwijmy go:
SQL> CREATE OR REPLACE
2 FUNCTION show_TestOutParam RETURN NUMBER
3 AS LANGUAGE JAVA
4 NAME 'TestOutParam.get() return java.lang.int';
5 /
Function created
SQL> select show_testoutparam from dual;
SHOW_TESTOUTPARAM
-----------------
20