Hello,
I am trying to connect to an Azure SQL DB with the following connections string:
jdbc:sqlserver:{{server}};database={{db}};user={{username}};password={{password}};encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.database.windows.net;loginTimeout=30;authentication=ActiveDirectoryPassword
The issue is that when I run the code, I get the following error:
Exception occurred in command execution. 'Could not Connect to Database. Failed to load MSAL4J Java library for performing ActiveDirectoryPassword authentication.'
Do you know what is to be done? I have searched and found nothing about this.
Thank you