我想访问我的 sql 数据库,而不是放置在ASUS\MSSQLSERVER1
数据库名称“Test”中,并使用密码 teste 访问用户 teste
在java代码中我编码了这个:
@Test
public void TesteTemp() throws SQLException, InstantiationException, IllegalAccessException, ClassNotFoundException
{
Class.forName("net.sourceforge.jtds.jdbc.Driver").newInstance();
String connString = "jdbc:jtds:sqlserver://ASUS/Test;instance=MSSQLSERVER1;user=teste;password=teste;";
Connection conn = null;
try{
conn = DriverManager.getConnection(connString);
}catch(SQLException ex){
ex.printStackTrace();
}
conn.close();
}
我收到这个错误:
服务器 ASUS 没有名为 MSSQLSERVER1 的实例。
这说得通?
我正在运行 MSSQLSERVER1 服务。