while
コマンドを 1 回実行した後にプログラムを一時停止し、もう一度繰り返すためbutton4_click
に再開するのを待ちたいと思い ます。button4 をクリックするたびに、while
ループが 1 回実行されます。
コード:
private void button2_Click(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection(connectString);
conn.Open();
if (this.textBox3.Text != "")
{
this.listView1.Items.Clear();
SqlCommand cmd = new SqlCommand("select * from customer", conn);
SqlDataReader read = cmd.ExecuteReader();
while (read.Read())
{
this.listView1.Items.Add(read.GetValue(0).ToString());
this.listView1.Items.Add(read.GetValue(1).ToString());
this.listView1.Items.Add(read.GetValue(2).ToString());
}
read.Close();
conn.Close();
}
}