Subversion Repositories Sigmater

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 Andrea 1
create or replace procedure CREA_UTENTE_CM(user_name varchar2,nome varchar2,cognome varchar2,email varchar2,cm varchar2) is
2
 
3
-- Cursore sulle comunità montane
4
CURSOR cur_ragg_comuni IS  
5
  select codice_belfiore 
6
  from ws_ragg_comuni s  
7
  where s.id_rag = cm;
8
-- codice belfiore del comune
9
locRecA1 WS_RAGG_COMUNI.CODICE_BELFIORE%TYPE;
10
-- indice
11
i NUMBER;
12
 
13
begin
14
   i:=0;
15
   OPEN cur_ragg_comuni;
16
   LOOP
17
     FETCH cur_ragg_comuni INTO locRecA1;
18
     EXIT WHEN cur_ragg_comuni%NOTFOUND;
19
     if i=0 then
20
        crea_utente_comunale(user_name,nome,cognome,email,locRecA1);
21
     else 
22
        abilitazione_utente_comune(user_name,locRecA1);  
23
     end if;  
24
     i:= i+1;
25
   END LOOP;
26
end CREA_UTENTE_CM;
27
/
28