customize log in window [message #385480] |
Mon, 09 February 2009 19:04 |
xpact83
Messages: 225 Registered: October 2008 Location: philippines
|
Senior Member |
|
|
guys i want to customize the log in window in oracle...
so in the module's log-on trigger i used the log on command to connect to the database using my user name and password ....
the problem guys is in my ok button.... i cannot create a query to search the password of users in the table user_users..
here is the code
declare
my_variable varchar2(30);
begin
select username into my_variable from user_users where username = :block.text1
-- this code will search the user name
-- how about the password i cannot search for the password...
-- and another thing... if i used my username in the logon trigger of ---modules how can another user logon with different username...
end;
to summarize my problem... i want to know what table in oracle contains the password and username... and can i make queries to that table thanks...
|
|
|
|
|