반응형
1. create or replace and compile java source named
create or replace and compile java source named helloworld as
import java.util.*;
public class helloWorld{
public static String call(String str) {
return "HelloWrold : " + str;
}
}
2. create or replace function
create or replace function helloworld_call(str varchar2) return varchar2 as
language java name 'helloWorld.call(java.lang.String) return java.lang.String';
3. select
select helloworld_call('안녕~') from dual;
반응형
'Oracle(DB관련)' 카테고리의 다른 글
Oracle Text 설치 (0) | 2020.04.20 |
---|---|
oracle text (0) | 2020.04.20 |
oracle 비율로 배분 후 나머지 마지막에 합산 (0) | 2019.12.02 |
oracle alert log 파일 조회 diy$alert (0) | 2019.11.08 |
oracle string util package (0) | 2018.12.28 |