gpt4 book ai didi

c# - 已经有一个与此连接关联的打开的 DataReader

转载 作者:行者123 更新时间:2023-11-29 06:47:29 27 4
gpt4 key购买 nike

我使用下面的代码在 C# 中从 mySql 获取数据。当我这样做时,我收到代码下方提到的错误。我发现了一些关于这个主题的问题,但他们使用了 DataReader,而我没有。

MySqlConnection sq = new MySqlConnection("...");
sq.Open();
MySqlCommand sc = new MySqlCommand("select * from users", sq);
DataSet ds = new DataSet();
MySqlDataAdapter da = new MySqlDataAdapter(sc);
da.Fill(ds);
sq.Close();

我的错误:

There is already an open DataReader associated with this Connection which must be closed first.

最佳答案

在您的连接字符串中只需添加"MultipleActiveResultSets=True;"

关于c# - 已经有一个与此连接关联的打开的 DataReader,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17805685/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com