我有一个需要连接到MS SQL Server 2008数据库的应用程序。现在我有了jdbc驱动程序,我一直在努力让它成功连接。这是我的连接代码:
try {
Class.forName("net.sourceforge.jtds.jdbc.Driver");
int duration = Toast.LENGTH_SHORT;
Connection con = DriverManager.getConnection(jdbc:jtds:sqlserver://41.76.209.156:1433; databaseName=prooptin_ProOptData", "username", "password");
textview7.setText(con.toString());
textview7.setText("Successful");
} catch (ClassNotFoundException e) {
textview7.setText("Could not find the database driver " + e.getMessage());
} catch (SQLException e) {
textview7.setText("Could not connect to the database " + e.getMessage());
} catch (Exception e) {
textview7.setText(e.getMessage());
}
似乎挂在DriverManager.getConnection()
行。我试图改变连接字符串,并尝试使用和没有用户名和密码和数据库名称,没有任何工作。它不会打印异常消息,只返回空白消息,没有任何反应。