我需要使用Windows身份验证作为其他用户从Java建立与MSSQL数据库的连接
由于Windows身份验证使用服务器用户名和密码,导致SQL登录失败。我想更改那些。
this.connectionString = "jdbc:sqlserver://SERVER;DatabaseName=DATABASE;integratedSecurity=true";
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
this.conn = DriverManager.getConnection(this.url);
this.statement = conn.createStatement();
我希望以其他Windows用户身份登录到远程数据库。
在此先感谢