0

コードに少し問題があり、テキストボックスの値をデータベースに一致させようとしましたが、エラーメッセージが表示されました...

ここに私のコードがあります:

私のメインコード;

 protected void btnAddNewTopic_Click(object sender, EventArgs e)
    {
        if (txtbAddNewTopic.Text == "")
        {
            MessageBox.Show("Please write topic!");
        }
        else if (goodob.Businness_Layer.AddNewTopic.NewTopicCheckSystem(txtbAddNewTopic.Text) == null)
        {
            MessageBox.Show("Your added topic is already in site!");
        }
        else
        {
            goodob.Businness_Layer.CreateNewTopic.crnewtopic(txtbAddNewTopic.Text);
            MessageBox.Show("Your topic has successfully created!");
        }



    }

そして私のチェックコード;

 public static goodob.Businness_Layer.AddNewTopic NewTopicCheckSystem(string topic)
    {
        goodob.Businness_Layer.AddNewTopic xyz = null;

        string query = @"SELECT [topic_name] 
                       FROM topic
                       WHERE topic_name = @topic";

        goodob.Class1 connection1 = new goodob.Class1();
        connection1.sqlcommand.CommandText = query;

        SqlParameter topicparam = new SqlParameter("@topic_name", SqlDbType.VarChar);
        topicparam.Value = topic;

        connection1.sqlcommand.Parameters.Add(topic);

        System.Data.SqlClient.SqlDataReader reader = connection1.sqlcommand.ExecuteReader();

        if (!reader.HasRows)
        {
            connection1.close_connection();
            return null;
        }




        return xyz;
    }

connection1.sqlcommand.CommandText = query; でエラーが発生します。私を助けてください!

4

1 に答える 1