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;");
}
}