JDBC方式连接数据库,出现下面的异常情况,
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket. 
 
异常部分代码如下:
try
{
String SOURCE="jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=pubs";
Connection con=DriverManager.getConnection(SOURCE,"sa","");
}
catch(SQLException e)
{out.print(e);}
束手无策,请大家帮忙看看