KEEP CALM
AND START AGAIN
I have found the system to figure out how you are connected to the network.
************************************************** **
ContextKeyword lcxk_base
string ls_Path
ls_values string []
this.GetContextService ("Keyword", lcxk_base)
lcxk_base.GetContextKeywords ("USERNAME", ls_values)
IF upper-bound (ls_values)> 0 THEN
ls_Path = ls_values [1]
ELSE
ls_Path = "* UNDEFINED *"
END IF
this.GetContextService ("Keyword", lcxk_base)
lcxk_base.GetContextKeywords ("COMPUTERNAME", ls_values)
IF upper-bound (ls_values)> 0 THEN
ls_Path = ls_values [1]
ELSE
ls_Path = "* UNDEFINED *"
END IF
****************************************
Now I know that the user had access to the network and has been authenticated by active directory.
for me it's enough. I do not want other login.
At this point, how do I access Oracle without a login?
The sqlca ask me: UID and PASSWORD....
ty for answer
Gimmy