我已经创建了一个用于身份验证的自定义函数,任何人都可以建议如何使用自定义身份验证向导将PARAMETERS传递给该特定函数吗?
答案 0 :(得分:0)
惊讶于没有回答,无论如何我已经整理了自己,这是需要它的人的代码。
create or replace function custom_authentication (p_username in varchar2, p_password in varchar2)
return boolean
IS
begin
Your code for authentication
return true
end
如果您使用内置登录页面,则自定义身份验证需要变量名称为p_username和p_password。