|
| Total Answers and Comments: 3 |
Last Update: July 20, 2007 Asked by: ddkdhar |
|
| | |
|
Submitted by: askvenki A strong REF CURSOR type definition specifies a return type, but a weak definition does not. DECLARE TYPE EmpCurTyp IS REF CURSOR RETURN emp%ROWTYPE; -- strong TYPE GenericCurTyp IS REF CURSOR; -- weak in a strong cursor structure is predetermined --so we cannot query having different structure other than emp%rowtype in weak cursor structure is not predetermined -- so we can query with any structure
Above answer was rated as good by the following members: ratna82, ds_devi | Go To Top
|