Java Beans in forms [message #629382] |
Mon, 08 December 2014 05:27 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Xandot
Messages: 235 Registered: January 2014 Location: India
|
Senior Member |
|
|
Hello all,
Which is the following best via to use java in oracle :-
1- Using java beans in oracle forms?
2- Using java function in oracle DB?
Thanks,
Xandot
|
|
|
|
|
|
|
Re: Java Beans in forms [message #629799 is a reply to message #629408] |
Tue, 16 December 2014 03:55 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Xandot
Messages: 235 Registered: January 2014 Location: India
|
Senior Member |
|
|
For example in java class:-
public class Add
{
public int addition (int a , int b)
{
return(a+b);
}
}
I want to call this java class from my Oracle forms. In Forms I have two input and one output field and one ADD button. on ADD button i want to call java class which is responsible for return the addition.
Please help me out .
|
|
|
|
|