傾向を SQL テーブルに保存できるプログラムを作成しようとしています。テキスト ボックスに入力されたハッシュタグがまだ存在しない場合はデータベースに追加し、カウンターを 1 増やします。
最初の列は "HashTag" で、2 番目の列は "Counter" で、それぞれ char(10) と int プロパティがあります。
私はSQLが初めてなので、少し問題があります。これは私がこれまでに持っているものです。
SqlConnection connection = new SqlConnection();
connection.ConnectionString = (@"Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Users\Jordan Moffat\Desktop\coursework\WindowsFormsApplication\WindowsFormsApplication\HashTags.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True");
connection.Open();
HashTagReader r = new HashTagReader();
if (r.HashTagSearch(s))
MessageBox.Show("I Found it!");
else
{
SqlCommand myCommand = new SqlCommand("INSERT INTO tblHashTag (HashTag, Counter) " + "Values (s, ++)", connection);
myCommand.ExecuteNonQuery();
}
connection.Close();
助言がありますか?