GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Oracle  >  PL/SQL

 Print  |  
Question:  Package Function

Answer: You have a package called A and one function in that packgae called XYZ.
If you need to call that function in second packaged B, How will you call?


March 03, 2009 00:36:43 #3
 Mohamed Harish   Member Since: September 2008    Total Comments: 1 

RE: Package Function
 
You can call the function in another package like:

Package_name.function_name();

In your case:

variable1 := A.XYZ();
     

 

Back To Question