public Connection getConnection()throws Exception {
String url = "jdbc:sqlserver://localhost:1433;databaseName=PRJ311;integratedSecurity=true;";
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
return DriverManager.getConnection(url, userID, password);
}
所以基本上我刚刚安装了ms sql server 2017,我使用了开发人员的默认设置。我需要用户名和密码吗?如果需要,我怎么能得到它?我一直在谷歌上搜索,所以希望有人可以提供帮助。谢谢!\ n
P / s:我的程序被卡住了,即使我使用try-catch块,它也没有打印出任何错误! sql server指定的连接名是:localhost \ MSSQLSERVER01(DESKTOP-TG6LRB4 \ emsnguyen)