在运行时更改数据集连接字符串
我有 ac# 生成的数据集。如何更改连接字符串,以便可以将数据集与另一个(结构相同但填充不同)数据库一起使用?这必须在运行时发生,因为我在编译时不知道服务器或数据库名称。我正在使用c#2.0。
I have a c# generated dataset. How can I change the connection string so I can use the dataset with another (identically structured yet differently populated) database? This has to occur at runtime as I do not know the server or database name at compile time. I am using c# 2.0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以修改表适配器的单个实例。
You can modify a single instance of the table adapter.
根据上面的链接,我这样做了:
Based on the link above, I did it this way:
数据库名称也是连接字符串中的一个参数。
The database name is also a parameter in the connection string.