VS2010を使用してクリニック用のウィンドウフォームアプリケーションを構築しています。フォームには、RegistrationNoに基づいてデータベースを表示する検索ボタンがあります。
アプリケーションをテストするときは、登録番号を入力して検索
ボタンをクリックすると、何も表示されず、エラーメッセージも表示されません。
これが私のコードです
string connectionstring = "Data Source=localhost;Initial Catalog=HMS;Persist Security Info=True;User ID=Developer;Password=abc@123";
SqlConnection connection = new SqlConnection(connectionstring);
string SelectStatement = "SELECT * FROM MyTable where RegistrationNo = '@RegistraionNo'";
SqlCommand insertcommand = new SqlCommand(SelectStatement, connection);
insertcommand.Parameters.AddWithValue("@RegistrationNo", txtsearch.Text);
SqlDataReader reader;
try
{
connection.Open();
reader = insertcommand.ExecuteReader();
while (reader.Read())
{
textBox3.Text = reader["RegistratioNo"].ToString();
textBox1.Text = reader["FirstName"].ToString();
textBox2.Text = reader["LastName"].ToString();
genderOption.Text = reader["Sex"].ToString();
textBox7.Text = reader["Contact"].ToString();
textBox4.Text = reader["Age"].ToString();
textBox5.Text = reader["Weight"].ToString();
textBox6.Text = reader["Weight"].ToString();
comboBox1.Text = reader["Tribe"].ToString();
}//end while
reader.Close();
}
catch (SqlException ex)
{
throw ex;
}//end catch
finally
{
connection.Close();
}// end finally
`