我正在尝试连接到我的数据库,称为“Recept”。首先,我在端口方面遇到了一些麻烦,但我修复了它。现在我有这个代码:
try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String connectionUrl = "jdbc:sqlserver://127.0.0.1:1433;"
+ "databaseName=Recept;";
Connection con = DriverManager.getConnection(connectionUrl);
} catch (SQLException e) {
System.out.println("SQL Exception: " + e.toString());
} catch (ClassNotFoundException cE) {
System.out.println("Class Not Found Exception: " + cE.toString());
}
我得到了这个例外:
SQL Exception: com.microsoft.sqlserver.jdbc.SQLServerException: Login failed for user ''. ClientConnectionId:01819eae-5044-426b-a462-645f247003d6
我不知道我的用户名和密码是什么,这是我可以连接到我的服务器的方式,你可以看到,我不需要用户名和密码:
请有人帮助我,我应该如何用java编写我的“connectionUrl”?
谢谢!