使用Selenium(Java)连接到Microsoft SQL Server Management

时间:2017-09-25 08:27:57

标签: java sql-server selenium jdbc

在我的项目中,我们使用Microsoft SQL Server Management Studio进行数据库测试,现在我们需要自动化一些涉及数据库测试的流程。下面是登录前的屏幕截图,我们根据需要输入服务器名称,身份验证为" Windows身份验证"。然后用户名将自动填充,无需输入密码。

enter image description here

所以为了连接到数据库,我使用下面的代码,但在执行时我得到错误"登录失败的用户PILOTCORP \ chatterp"。

Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
Connection con=DriverManager.getConnection("jdbc:sqlserver://ipaddress:portnumber;Databases=knxfpdbscrum\\FuelPact","username","password");
Statement st= con.createStatement();

在代码中我输入了数据库名称为" knxfpdbscrum \ FuelPact"因为我们需要选择数据库名称作为FuelPact。

enter image description here

请帮帮我。

0 个答案:

没有答案