0

我正在尝试将一行 SQL 数字加载到多个文本框中。基本上,该行包含用“;”分隔的数字。我怎样才能得到它,以便每个数字在用“;”分隔时 是在自己的文本框中吗?

        SqlConnection conn = new SqlConnection("Data Source=LAURA-PC;Initial Catalog=Sudoku;Integrated Security=True");
        conn.Open();

        SqlCommand command = conn.CreateCommand();
        command.CommandText = "Select puzzle from Puzzle";
        command.CommandType = CommandType.Text;

        SqlDataReader reader = command.ExecuteReader();
        if (reader.Read())
        {
            textBox1.Text = reader.GetValue(0).ToString();
            textBox2?
            textbox3?
        }
        conn.Close();
4

2 回答 2

1

假设该puzzle列具有分号分隔的数字:

...
SqlDataReader reader = command.ExecuteReader();
if (reader.Read())
{
    string[] tokens = ((string)reader[0]).Split(';');

    textBox1.Text = tokens[0];
    textBox2.Text = tokens[1];
    // etc...
}
...
于 2012-06-07T02:06:16.477 回答
1

假设您拥有与 TextBoxes 相同数量(或更少)的数字,您可以将 TextBoxes 放入一个数组并使用以下代码:

...
SqlDataReader reader = command.ExecuteReader();
if (reader.Read())
{
    string[] tokens = reader.GetString(0).Split(';');
    for(int i = 0; i < tokens.Length; i++)
    {
        textBoxes[i].Text = tokens[i];
    }
}
...
于 2012-06-07T02:13:46.543 回答