如何将从包含ONE COLUMN和MULTIPLE ROWS的查询中检索到的值放入文本框中。我的意思是txtBox1将具有第一行的值,txtBox2将具有第二行的值,依此类推。我所知道的是如何检索每列的值而不是行。
答案 0 :(得分:1)
也许:
List<TextBox> allTextBoxes = this.Controls.OfType<TextBox>().ToList();
int current = -1;
using (var con = new MySqlConnection(Properties.Settings.Default.ConnectionString))
{
using (var cmd = new MySqlCommand("SELECT ColumnName FROM dbo.TableName", con))
{
con.Open();
using (var rd = cmd.ExecuteReader())
{
while (rd.Read() && ++current < allTextBoxes.Count)
{
allTextBoxes[current].Text = rd.GetString(0);
}
}
}
}
将this.Controls
替换为包含所有TextBox
es。