我有这样的所有问题有人知道怎么修吗?非常感谢

ljo96ir5  于 2021-08-20  发布在  Java
关注(0)|答案(1)|浏览(179)

**已关闭。**此问题需要调试详细信息。它目前不接受答案。
**想要改进此问题?**更新问题,使其位于堆栈溢出主题上。

五天前关门。
改进这个问题
问题形象

String connectionUrl = "jdbc:sqlserver://localhost;databaseName=QLSV;user=sa;password=12345";

try (Connection con = DriverManager.getConnection(connectionUrl);
    Statement stmt = con.createStatement();) {
    String SQL = "SELECT TOP 10 * FROM USERS";
    ResultSet rs = stmt.executeQuery(SQL);

    // Iterate through the data in the result set and display it.
    while (rs.next()) {
        System.out.println(rs.getString("USERNAME") + " " + rs.getString("PASSWORD"));
    }
} // Handle any errors that may have occurred.
catch (SQLException e) {
    e.printStackTrace();
}
q8l4jmvw

q8l4jmvw1#

如果项目是maven,请更新以下依赖项

<dependency>
    <groupId>com.microsoft.sqlserver</groupId>
    <artifactId>mssql-jdbc</artifactId>
    <version>8.2.1.jre11</version>
</dependency>

相关问题