what is difference b/w pravite procedures and public
procedures?
Answers were Sorted based on User's Feedback
Answer / a g srikanth
Any procedure that is declared and defined ONLY in the
package body is a private procedure. This procedure is
local to the package and other procs cannot call any
private procedure.
On the other hand if the procedure is defined in the
package specification and defined in the package body it is
a public procedure, this is accessible to other procs also.
Is This Answer Correct ? | 30 Yes | 1 No |
Answer / siva
If the procedure is with in the package it is the public
procedure,other wise it is private procedure.
Is This Answer Correct ? | 18 Yes | 8 No |
Answer / swati sucharita
private procedure is used before class name.if we have
declared private before class name then subclass cannot
inherit the properties of private class.
public procedure is used before class name,if we have
declared public before class name then all other class can
inherit the properties of public class.
Is This Answer Correct ? | 3 Yes | 5 No |
What is an inconsistent dependency?
What is a primary key, and how is it different from a unique key?
How do you update a sql procedure?
What is the basic structure of PL/SQL ?
what is bdb (berkeleydb)? : Sql dba
What is Difference Between delete and Truncate?
What is compiled query?
Is not equal in sql?
Give which cursor is better for better performance means type of cursors?
What are the difference between Functions/Stored Procs and Triggers and where are they used.
How is use pl and sql?
What are primary key and foreign key and how they work?