i declare 4 procedure in package specification but in package
body i write only 3 procedure. is it complie??//w
Answer Posted / ayan
Procedures that are defined in package spec are public
procedures but procedures those are in package body but not
in package spec are private procedure. we cannot call
private procedure using
package_name.private_procedure_name.Private procedure
should be called from any public procedure.
Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is mutating error?
explain advantages of myisam over innodb? : Sql dba
how to drop an existing index in mysql? : Sql dba
How do you use collections in procedure to return the resultset?
What is nvarchar max in sql?
Is it mandatory for the primary key to be given a value when a new record is inserted?
Which command is used to delete a package?
What is primary key in db?
how to calculate the difference between two dates? : Sql dba
What are procedures used for?
What are sql constraints?
What is sql table?
What is the difference between microsoft sql and mysql?
Are stored procedures compiled?
Can we rollback delete command?