Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下代码:
出于某种原因,它正在生成异常“调用读取阅读器的无效尝试已关闭”。有人可以帮我解决吗?我不知道为什么它会在阅读阅读器的内容后关闭连接时产生此异常。
它在这一行产生异常:
while (rdr.Read())
我解决了。
问题是我正在读取块内加载数据表。我修改了代码如下,它现在可以工作了。
if (rdr.HasRows) { results.Load(rdr); }