过去几天几乎坚持这一点。我通常不会在这里发帖,但是我想要自己搜索的东西不起作用。我想查询PostgreSQL并提出多个记录,每个记录都有多个字段(由我的SELECT语句指示)。由于我不知道返回的记录数,我认为某种类型的while循环是最好的。我似乎无法将所有值作为列表获取,然后将该列表放入表中,根据需要添加行。
NpgsqlConnection pgconn = new NpgsqlConnection(ConfigurationManager.ConnectionStrings["ConnString"].ConnectionString);
pgconn.Open();
NpgsqlCommand command = new NpgsqlCommand("SELECT line, oper, subst_a, from_loc, to_loc, area " +
"FROM ab_basedata.superpipes_ihs " +
"WHERE gdm_approv = '" + lic_num_lbl + "'", pgconn);
List<List<string>> pipes = new List<List<string>> { };
NpgsqlDataReader dr = command.ExecuteReader();
while (dr.Read())
{
pipes.Add("Line: " + dr.GetValue(0) + " " + dr.GetValue(1) + " " + dr.GetValue(2) + " " + dr.GetValue(3) + " " + dr.GetValue(4) + " " + dr.GetValue(5) + " Office");
foreach (List<string> pip in pipes)
{
TableRow row = new TableRow();
TableCell cell1 = new TableCell();
cell1.Text = string.Join(" ", pipes);
row.Cells.Add(cell1);
docTable.Rows.Add(row);
}
}
答案 0 :(得分:1)
您可以尝试在创建command
之后重新编码这些行...
List<List<string>> pipes = new List<List<string>>();
NpgsqlDataReader dr = command.ExecuteReader();
while (dr.Read())
{
List<string> pip = new List<string>();
pip.Add("Line:");
for (int i = 0; i < dr.FieldCount; i++)
pip.Add(dr.GetString(i));
pip.Add("Office");
TableRow row = new TableRow();
TableCell cell1 = new TableCell();
cell1.Text = string.Join(" ", pip);
row.Cells.Add(cell1);
docTable.Rows.Add(row);
pipes.Add(pip);
}
// close DB resources if finished with them
dr.close();
pgconn.close();
我在这里假设您确实希望将所有数据填充到一个单元格中,而不是每个项目的单元格。如果您的代码中的其他位置不需要pipes
,则可以删除它。