est ce qu'il existe un compilateur PL/SQL pour traduire le code PL/SQL en Java.
Le code a traduire est assez simple
par exemple:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 declare
  nb_essai number:=2;
    exist number:=0;
    return_alert number;
begin    
 select count(*) into exist from connexion
 where connexion.login=:LOGIN
 and connexion.passwd=:PASSWD;
 if exist=1 then
       CALL_FORM('D:\projet2\P_ACCUEIL',hide,no_replace);
 else
return_alert:=show_alert('AL_ERREUR');
Clear_Form(No_Validate);
nb_essai:=nb_essai - 1;
if nb_essai=0 then
exit_form(no_commit);
end if;
end if;
 
    EXCEPTION
     when OTHERS then    
     Raise form_trigger_failure ;  
  end;
merci bcp