To use Windows authentication when connecting to SQL Server, DatabaseConnector needs to load the authentication DLL (from Java). Right now we use reflection here, but this is not allowed in higher Java versions (>8).
It should be possible to use System.load() instead, which would allow us to support higher Java versions
To use Windows authentication when connecting to SQL Server, DatabaseConnector needs to load the authentication DLL (from Java). Right now we use reflection here, but this is not allowed in higher Java versions (>8).
It should be possible to use
System.load()instead, which would allow us to support higher Java versions