what is mean by forward declaration and where we'll use it.
Answer Posted / 6/8/07
Forward declaration is used in declaring subprograms that
can be used in packages.
eg: procedure query_emp(empno number,empname varchar);
--procedure is declared.
we should define the procedure next..
the basic idea is :declaration first and definition later.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What does a pl/sql package consist of?
what are properties of a transaction? : Sql dba
how to convert numeric values to character strings? : Sql dba
explain advantages of innodb over myisam. : Sql dba
Which sql most popular?
How do you clear the screen in sql?
Does view store data in sql?
What is exception? What are the types of exceptions?
Do triggers have restrictions on the usage of large datatypes, such as long and long raw?
What is a primary key called that is made up of more than one field?
How many primary keys can a table have?
Can we join two tables without common column?
What is a memo field?
when is the use of update_statistics command? : Sql dba
What problem one might face while writing log information to a data-base table in pl/sql?