we would like to use M$ SQL-Server as the database to run QB with.
We set up SQL-Server in "Windows authentication mode", so we need to use "Integrated Security=True" in the connection string.
If possible, we try to avoid saving passwords in plain text files.
So, the config should look something like this:
hibernate.dialect=org.hibernate.dialect.SQLServerDialect
hibernate.connection.driver_class=net.sourceforge.jtds.jdbc.Driver
hibernate.connection.url=jdbc:jtds:sqlserver://localhost:1433;namedPipe=true;Integrated Security=True
#hibernate.connection.username=
#hibernate.connection.password=
This config fails:
Caused by: java.io.IOException: SSO Failed: Native SSPI library not loaded. Check the java.library.path system property.
According to "http://jtds.sourceforge.net/faq.html" the driver does not support "Integrated Security" and if we use "com.microsoft.sqlserver.jdbc.SQLServerDriver" we get a "ClassNotFound"-Exception.
Is there any way to use SQL-Server in "Windows authentication mode"?
Thanks for your help,
Michael