next up previous contents
Next: 5.4 Tests sur un Up: 5.3 Traitement des lignes Previous: 5.3.1 Utilisation de variables   Contents

5.3.2 Utilisation d'un enregistrement

Ex : CURSOR c_traitement IS

          SELECT nom, pmm, qualif, dattit, trtmnt
          FROM personnel
          ORDER BY 5;
     r_traitement c_traitement%ROWTYPE;
     ...
     FETCH c_traitement INTO r_traitement;


Florence Bannay 2000-11-13