|
|
|
|
|
ActiveDirectory (Property) In french: ActiveDirectory
The ActiveDirectory property allows you to connect to an HFSQL server using Active Directory authentication. You can: - Determine if the connection uses Active Directory authentication.
- Define if the connection will use Active Directory authentication.
Remark: The connection can correspond to: cnt_sso is Connection cnt_sso.Provider = hAccessHFClientServer cnt_sso.Server = "srv1.mydomain.com" cnt_sso.ActiveDirectory = True HOpenConnection(cnt_sso)
// Force the use of another domain account cnt is Connection cnt.Provider = hAccessHFClientServer cnt.Server = "srv1.mydomain.com" cnt.ActiveDirectory = True cnt.User = "Account_name@mydomain.com" cnt.Password = "xxxxxx" HOpenConnection(cnt)
Syntax
Determining if the connection uses Active Directory authentication Hide the details
<Result> = <Connection>.ActiveDirectory
<Result>: Boolean - True if the connection uses Active Directory authentication,
- False otherwise.
<Connection>: Character string or Connection variable Name of the connection used. This name is defined:
Defining if the connection uses Active Directory authentication Hide the details
<Connection>.ActiveDirectory = <Active Directory Management>
<Connection>: Character string or Connection variable Name of the connection used. This name is defined: <Active Directory Management>: Boolean - True if the connection uses Active Directory authentication,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|