Strategy supports Azure Active Directory authentication (Azure AD). Azure AD authentication is an alternative to SQL Server Authentication that allows administrators to centrally manage user permissions to Azure SQL Database data stores. When Azure AD authentication is enabled, all communications to the service are encrypted.
To configure the driver to use Azure AD authentication, perform the following steps.

*.database.windows.net.
userid@domain.comformat.
your_server.database.windows.net.
For example, the following is a DSN-less connection string with only the required options for making a connection using Azure AD authentication:
DRIVER={Strategy ODBC Driver for SQL Server Wire Protocol};AM=13;DB=SQLSdb1;
HOST=myserver.database.windows.net;HNIC=*.database.windows;PORT=1433;
TS=\<truststore_path>\ca-bundle.crt;VSC=1;UID=test@domain.com;PWD=secret;odbc.inifile with only the required options for making a connection using Azure AD authentication:
[SQLServer Wire Protocol] Driver=ODBCHOME/lib/mysqls64.so Description=Strategy ODBC Driver for SQL Server Wire Protocol AuthenticationMethod=13 Database=SQLSdb1 HostName=myserver.database.windows.net HostNameInCertificate=*.database.windows LogonID=test@domain.com Password=secret PortNumber=1433 TrustStore=/<truststore_path>/ca-bundle.crt ValidateServerCertificate=1
If you want to manage Azure AD connection on other release, please reach out to local sales or a support engineer.