使用jsp连接到SQL Server数据库?

时间:2017-09-27 15:09:40

标签: sql-server

以下是我的jsp中的一些代码:

try {
    String connectionURL = "jdbc:sqlserver://10.103.18.174:3304;databaseName=DWH_ILEM";

    Connection connection = null;

    Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance();

    connection = DriverManager.getConnection(connectionURL, "dwh_reader", "ilem@2017");

    if(!connection.isClosed()) {
        out.println("Successfully connected");
        connection.close();
    }
    catch(Exception ex) {
        out.println("Unable");
    }
}

这是我项目的结构:

https://imgur.com/a/jw7qi

我可以通过SSMS连接到数据库但不能用jdbc连接到数据库,我无法检测到错误。

提前致谢。

0 个答案:

没有答案