- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我尝试使用 Eclipse 连接到 SQL Server 数据库,但出现错误:
Cannot open database "AdventureWorks2012" requested by the login. The login failed.
最佳答案
由于您使用的是integratedSecurity=true
,这意味着您的Windows帐户不允许访问AdventureWorks2012
数据库。您需要授予您登录(或运行Eclipse)的Windows帐户数据库访问权限。您可以关注To configure database access授予您的 Windows 帐户访问权限的文档:
On the computer that is running SQL Server, start SQL Server Management Studio. In the Registered Servers pane, double-click SQL Server.
In the object explorer pane, expand SQL Server, expand the Security folder, right-click Logins, and then click New Login.
In the Login – New dialog box, specify either Windows Authentication or SQL Server Authentication mode.
If you are using Windows Authentication, enter a logon name and select either the Grant Access or the Deny Access option.
If you are using SQL Server Authentication, type a logon name and password, and then confirm the password.
In the left pane, click Database Access.
In the right pane, select the Permit check box for the databases you are granting access to, and then click OK.
如果您想通过指定用户名和密码进行连接,请使用 integratedSecurity=false
并提供用户名和密码,如 Establishing a Connection 中所示。文档:
String jdbcUrl = "jdbc:sqlserver:...";
Properties props = new Properties();
props.put("user", <database username>);
props.put("password", <database password>);
try (Connection conn = DriverManager.getConnection(jdbcUrl, props)) {
...
}
关于Java 连接到 SqlServer 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53365224/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!