gpt4 book ai didi

java - 我正在使用 Microsoft SQL Server 2014 和 NetBeans 8.0.2 - getConnection 始终带有下划线红色

转载 作者:行者123 更新时间:2023-11-29 04:26:06 24 4
gpt4 key购买 nike

我希望你能帮助我?

我目前正在开发一个将在 NetBeans 8.0.2 中编程并将 SQL Server 2014 作为后端数据库应用程序的应用程序。

我正在尝试让 Ne​​tBeans 应用程序与 SQL 数据库应用程序对话,虽然我觉得我已经正确地运行了创建链接等的过程,但除了带下划线的红色之外,我无法将 getConnection 设置为任何状态。

我们将不胜感激。

我在下面添加了我的电话:

Connection con = null;   
try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
con = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;databaseName=KeyProp","sa");
System.out.println("Connected");
} catch(ClassNotFoundException e) {
System.out.println("Class Not Found Exception :" + e.getMessage());
}

谢谢,唐

最佳答案

问题是您正在尝试调用不存在的 getConnection 方法 (getConnection(String, String))。

您有以下选择:

所以最有可能的解决方案是使用

getConnection("jdbc:sqlserver://...", "sa", "your-sa-password)

关于java - 我正在使用 Microsoft SQL Server 2014 和 NetBeans 8.0.2 - getConnection 始终带有下划线红色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46175196/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com