I am trying new database protocol and I can’t setup a connection to MS SQL using integrated security. If I use SQL user and password I am able to connect. But we prefer using integrated security.
When I set connection as
jdbc:sqlserver://mysqlserver:1433;DatabaseName=mydatabase;integratedSecurity=true
I got the following error:
This driver is not configured for integrated authentication.
Just out of curiosity I tried to explicitly specify network id (in domainuser format) and password (even though I am not going to use it that way) but that didn’t work either. Tried slash instead of backslash, double backslash – neither works.
Anybody here had success to use integrated security?
We’ve been successfully using TclODBC for querying MS SQL in CL 5.7 and if new database protocol can’t work with integrated security I guess we can continue using TclODBC.