微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在VB.NET中将故障转移伙伴添加到连接字符串

我有一个连接到数据库的Windows应用程序来读取一些数据.由于数据库是为弹性设置的,因此我的应用程序需要连接到两个数据库中的一个.有人可以指定使用sql server身份验证在连接字符串中指定故障转移伙伴的语法.

任何帮助是极大的赞赏.

检查 connectionstrings.com

Database mirroring
If you connect with ADO.NET or the sql Native Client to a database that is being mirrored,your application can take advantage of the drivers ability to automatically redirect connections when a database mirroring failover occurs. You must specify the initial principal server and database in the connection string and the failover partner server.

Data Source=myServerAddress;Failover Partner=myMirrorServerAddress;Initial
Catalog=myDataBase;Integrated Security=True;

There is ofcourse many other ways to write the connection string using database mirroring,this is just one example pointing out the failover functionality. You can combine this with the other connection strings options available.

原文地址:https://www.jb51.cc/vb/255840.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐