Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Encrypted Login to database in d2k

Status
Not open for further replies.

tnerurkar

Programmer
Apr 9, 2003
35
IN
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top