Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. set serveroutput on;
  2. create or replace procedure createUser (username in string, pass in string,
  3. auth_image in number, sec_question in string, sec_answer in string) is
  4. user_name users.user_id%type;
  5. pass_word users.password%type;
  6. image users.image%type;
  7. ques users.question%type;
  8. ans users.question%type;
  9. begin
  10. insert into users (user_name, pass_word,image, ques,ans) values (username,
  11. pass, auth_image,sec_question, sec_answer);
  12. commit;
  13. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement