0

I keep getting this error while I try to connect to SQL server with integrated security, can anyone help please.

This driver is not configured for integrated authentication

public static void main(String[] args) {    
    try {
        Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
        Connection conn = DriverManager.getConnection("jdbc:sqlserver://192.168.0.52;database = AMFN_Creator;integratedSecurity=true;");
    }
}
Dale K
  • 25,246
  • 15
  • 42
  • 71
Moe
  • 3
  • 4
  • what version of the sql jdbc driver are you using? – second Mar 02 '20 at 20:48
  • Does this answer your question? [JDBC SQLServerException: "This driver is not configured for integrated authentication."](https://stackoverflow.com/questions/6087819/jdbc-sqlserverexception-this-driver-is-not-configured-for-integrated-authentic) – Piotr Palka Mar 02 '20 at 20:51
  • I am using version jdbc 8.2.1 jre13 – Moe Mar 02 '20 at 20:54

0 Answers0