PL/SQL calls Java code

Source: Internet
Author: User

1. Writing code directly in SQL developer

Create or replace and compile Java source named "HelloWorld"
As
Package com.test;

public class HelloWorld {
public static string SayHello (string name) {
Return "Hello::" + name;
}
}

2. Create a method or package call to JAVA

(1). method

Create or Replace function HelloWorld (p_name in varchar2) return varchar2as language Java name ' Com.test.HelloWorld.sayHel Lo (java.lang.String) return java.lang.String ';

(2). Package

--Baotou
Create or Replace package Phelloworld are function Hello_world (p_name in varchar2) return varchar2;end phelloworld;--pack Body Create or Replacepackage body Phelloworld is function Hello_world (p_name in varchar2) return varchar2 is LANGUAG e Java name ' Com.test.HelloWorld.sayHello (java.lang.String) return java.lang.String '; end Phelloworld;

3. Calling a method or package, equivalent to calling Java

(1). Calling method

Begin    Htp.print (HelloWorld (' xx ')); end;

(2). Call Package

Begin    Htp.print (Phelloworld.hello_world (' xx ')); end;

Complete!

PL/SQL calls Java code

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.