Guest User

Untitled

a guest
Jun 21st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1.  
  2. procedure Insertion(code in Client.numclient%type, titre in CLIENT.NOMCLIENT%type, prenom in CLIENT.PRENOMCLIENT%type, domicile in CLIENT.ADRESSE%type, email in CLIENT.COURRIEL%type ) AS
  3. BEGIN
  4. INSERT INTO CLIENT values(code,titre,prenom,domicile,email);
  5. /* TODO implementation required */
  6. NULL;
  7. END Insertion;
  8.  
  9. procedure Supprimer(code in Client.numclient%type) AS
  10. BEGIN
  11. Delete from Client where numclient = code;
  12. /* TODO implementation required */
  13. NULL;
  14. END Supprimer;
  15.  
  16. procedure Selection(requete out enregistrement) AS
  17. BEGIN
  18.  
  19. open requete for Select * from client;
  20. /* TODO implementation required */
  21. NULL;
  22. END Selection;
  23.  
  24. function Lister return enregistrement as sortie enregistrement;
  25. begin
  26. open sortie for select * from client;
  27. return sortie;
  28. end;
Add Comment
Please, Sign In to add comment