Describes the different SQL authentication methods that can be used by a client connecting to Azure SQL Database.
Namespace: CNClrLib.ADONet.Enums
Delphi
|
type
TSqlAuthenticationMethod = (samNotSpecified, samSqlPassword, samActiveDirectoryPassword, samActiveDirectoryIntegrated);
|
|
Name
|
Description
|

|
samActiveDirectoryIntegrated
|
The authentication method uses Active Directory Integrated. Use Active Directory Integrated to connect to a SQL Database using integrated Windows authentication.
|

|
samActiveDirectoryPassword
|
The authentication method uses Active Directory Password. Use Active Directory Password to connect to a SQL Database using an Azure AD principal name and password.
|

|
samNotSpecified
|
The authentication method is not specified.
|

|
samSqlPassword
|
The authentication method is Sql Password.
|
Top
|