insert into net_user
(username,password,prority,group_id,descript)
values
(p_username,p_password,0,p_group_id,p_descript);
 commit;
exception
when others then
rollback;  //null; 你如果想不捕捉这个错误
end;