首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

VS2005连接到sqlserver2000(非默认实例NOone),该如何解决

2012-01-15 
VS2005连接到sqlserver2000(非默认实例NOone)我先安装了sqlserver2000然后在安装了VS2005但是执行连接语句

VS2005连接到sqlserver2000(非默认实例NOone)
我先安装了sql   server   2000   然后在安装了VS2005   但是执行连接语句的时候出现如下情况,不知道是不是连接语句连接到非默认实例的时候会不一样的,原来是这么写的server=127.0.0.1;database=Dnyy;uid=sa;pwd=sa;

An   error   has   occurred   while   establishing   a   connection   to   the   server.     When   connecting   to   SQL   Server   2005,   this   failure   may   be   caused   by   the   fact   that   under   the   default   settings   SQL   Server   does   not   allow   remote   connections.   (provider:   Named   Pipes   Provider,   error:   40   -   Could   not   open   a   connection   to   SQL   Server)
      请指教!非常感谢!

[解决办法]
server=127.0.0.1\实例名;database=Dnyy;uid=sa;pwd=sa;




server=.\实例名;database=Dnyy;uid=sa;pwd=sa;

热点排行