Posts

Showing posts from March, 2021

Custom Authentication in Oracle APEX

Image
 Custom Authentication in Oracle APEX  This blog demonstrate the steps for Custom Authentication in Oracle APEX. Step1: We Need a table Login.      CREATE TABLE   "LOGIN"    (            "LOGIN_PK" NUMBER(7,0) NOT NULL ENABLE,                 "ENTITY_OWNER_FK" NUMBER(7,0) NOT NULL ENABLE,                 "ENTITY_FK" NUMBER(2,0) NOT NULL ENABLE,                 "USERNAME" VARCHAR2(20) NOT NULL ENABLE,                 "PASSWORD" VARCHAR2(20) NOT NULL ENABLE, "EMAIL" VARCHAR2(50),   CONSTRAINT "LOGIN_PK" PRIMARY KEY ("LOGIN_PK") ENABLE,         ...