Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Konzept:Erstellen Sie ein Java-Programm und laden Sie es in Oracle DB - Wrapper-Funktion ruft Java-Funktion mit Rückgabe auf

Ja, Sie müssen eine statische Methode aufrufen, aber innerhalb der statischen Methode können Sie eine Instanz der Klasse erstellen und nicht statische Methoden aufrufen:

create or replace java source named "com.test.Example" AS
public class Example {
  public String getHelloWorld(
    final String hello
  ) {
    return hello + "world"
  }

  public static String getStaticHelloWorld(
    final String hello;
  ){
    final Example e = new Example();
    return e.getHelloWorld( hello );
  }
}
/

CREATE FUNCTION get_hello_world(i_string VARCHAR2) RETURN VARCHAR2 AS
  LANGUAGE java name 'com.test.Example.getStaticHelloWorld(
      java.lang.String
    ) return java.lang.String';