简体   繁体   English

Oracle Apex登录页面

[英]Oracle Apex Login Page

I'm looking to create a login page based on the username and password in one of the tables used in an Oracle Apex application. 我正在寻找一个基于Oracle Apex应用程序中使用的表之一中的用户名和密码的登录页面。 At the minute I can't find any information on how to do this. 目前,我找不到有关如何执行此操作的任何信息。 Any ideas? 有任何想法吗?

You don't need to change the login page, all you need to do is implement a custom Authentication Scheme . 您无需更改登录页面,只需执行自定义身份验证方案即可

All you need to do is create a function (eg FUNCTION authenticate(username_in IN VARCHAR2, password_in IN VARCHAR2) RETURN BOOLEAN ... ) that returns TRUE if the username/password is correct, and FALSE otherwise. 您需要做的就是创建一个函数(例如FUNCTION authenticate(username_in IN VARCHAR2, password_in IN VARCHAR2) RETURN BOOLEAN ... ),如果用户名/密码正确,则返回TRUE,否则返回FALSE。

eg as described here , here and here . 例如,如这里这里这里所述

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM