Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how can you pass values to-and-fro from foreign function?

Answer Posted / Anilkumarsingh

To pass values to and from a foreign function in Oracle D2K, you can use the PARAMETERS clause. This clause allows you to specify input parameters (IN) that are sent to the function, output parameters (OUT), and parameters that are both input and output (IN OUT). Here's an example:

```
DECLARE
myFunction (IN out_param1 number, IN out_param2 date);
BEGIN
myFunction(IN_PARAM1 => 5, IN_PARAM2 => SYSDATE);
END;
```

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Were you involved in any data conversion, which one?

13


Have you used lexical parameters in reports?

11


Are you familiar with user exits in reports?

11


Any work done in oracle workflow builder. Did you customize or build a new workflow?

13


How many concurrent programs you have customized, can you name some of them?

8