I m using forms 5. To connect oracle database through forms. I using following piece of code in pre-form trigger.
LOGON_SCREEN;
un := get_application_property(username);
pw := get_application_property(password);
cn := get_application_property(connect_string);
IF CN IS NOT NULL THEN
LOGON(UN,PW||'@'||CN, false);
ELSE
LOGON(UN,PW||'@connectstring', false);
END IF;
while data transfering(user name/Pasword) from client machine to Server. Can I encypt the session?
Regards
Tushar
LOGON_SCREEN;
un := get_application_property(username);
pw := get_application_property(password);
cn := get_application_property(connect_string);
IF CN IS NOT NULL THEN
LOGON(UN,PW||'@'||CN, false);
ELSE
LOGON(UN,PW||'@connectstring', false);
END IF;
while data transfering(user name/Pasword) from client machine to Server. Can I encypt the session?
Regards
Tushar