gpt4 book ai didi

C# 对 SqlDataReader 使用 while 循环

转载 作者:太空宇宙 更新时间:2023-11-03 22:40:59 25 4
gpt4 key购买 nike

<分区>

我正在尝试使用 while 循环修改来自数据读取器的数据,以使用 innerHtml 在网页上的 HTML 表格中将数据显示为行。它在第一次迭代时运行良好,但不会对其余数据再次迭代。

已检查数据读取器上是否存在所有数据,因此似乎与我的 while 循环代码有关

关于我做错了什么有什么建议吗?

string description = "placeholder";
string desc_mod;

query.InnerHtml += "<table class='list_format'>";

using (SqlDataReader productList = SQLHelper.ExecuteQuery(query1))
if (productList.HasRows)
{
while (productList.Read())
description = (string)productList["Description"];

desc_mod = description.Substring(0, 30);
query.InnerHtml += "<tr><td><div><p>" + desc_mod + "</p</div></td></tr>";
}

query.InnerHtml += "</table>";

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