在运行时更改数据集连接字符串

发布于 2024-09-13 21:21:16 字数 103 浏览 5 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

御守 2024-09-20 21:21:16

您可以修改表适配器的单个实例。

_myAdapter.Connection.ConnectionString = connectionString;

You can modify a single instance of the table adapter.

_myAdapter.Connection.ConnectionString = connectionString;
2024-09-20 21:21:16

根据上面的链接,我这样做了:

partial class QueriesTableAdapter
{
    public QueriesTableAdapter(string connectionString)
    {
        Properties.Settings.Default["connectionString"] = connectionString;
    }
}

Based on the link above, I did it this way:

partial class QueriesTableAdapter
{
    public QueriesTableAdapter(string connectionString)
    {
        Properties.Settings.Default["connectionString"] = connectionString;
    }
}
太傻旳人生 2024-09-20 21:21:16

数据库名称也是连接字符串中的一个参数。

The database name is also a parameter in the connection string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文