如何在一个asp.net项目中连接两个sqlserver数据库
问题如标题
我有个项目需要用到别的项目中的人员表 要连两个数据库应该可以解决吧
但是在配置文件中怎么写呢
又如何分开调用呢。
------解决方案--------------------加两个add不就行了嘛
------解决方案--------------------<connectionStrings>
<add name="default" connectionString="Data Source=.;Initial Catalog=HRManager;Persist Security Info=True;User ID=sa;Password=123" providerName="System.Data.SqlClient"/>
</connectionStrings>
要几个add几次啊
------解决方案--------------------在web.config中配置连接字符串,可以设置多个。
然后根据需要调用就可以了。
------解决方案--------------------多加一个连接字符串不就好了。。。。。
------解决方案--------------------改下连接字符串就行了
或者添加2个链接字符串 来回切换。
------解决方案--------------------UP UP
------解决方案--------------------
<connectionStrings>
<add name="default1" connectionString="Data Source=.;Initial Catalog=HRManager;Persist Security Info=True;User ID=sa;Password=123" providerName="System.Data.SqlClient"/>
<add name="default2" connectionString="Data Source=.;Initial Catalog=HRManager;Persist Security Info=True;User ID=sa;Password=123" providerName="System.Data.SqlClient"/>
</connectionStrings>
需要哪个就直接带哪个的名字过去就行了。
------解决方案--------------------
记得把里面的链接字符串给改了,哈哈,别2个Name都引用同一个数据库了。
------解决方案--------------------楼上都是正解啊
------解决方案--------------------大家说的都对那 我就来蹭个分数
------解决方案--------------------
正解