Legend: comment string keyword reserved word operator
1: PACKAGE rhn_set
2: IS
3: CURSOR set_iterator(set_label_in IN VARCHAR2, set_user_id_in IN NUMBER) IS
4: SELECT user_id, label, element, element_two
5: FROM rhnSet
6: WHERE label = set_label_in
7: AND user_id = set_user_id_in;
8: END rhn_set;
Legend: comment string keyword reserved word operator
1: PACKAGE BODY rhn_set
2: IS
3: END rhn_set;