0

を使用して、

Visual Studio 2012 C# WPF SQL Server Compact 4.0

ここにコードがあります。カテゴリ名を送信すると表示されます

「ExecuteNonQuery: 接続プロパティが初期化されていません」

助けてください。テキストボックスからデータベースにデータを追加しようとしています。

    private void btnCategoryAdd_Click(object sender, RoutedEventArgs e)
    {
        con.Open();
        SqlCeCommand com = new SqlCeCommand("INSERT INTO Category_Master(CategoryName) VALUES(@CategoryName)");
        com.Parameters.AddWithValue("@CategoryName", tbCategoryName.Text);

        try
        {
            int affectedRows = com.ExecuteNonQuery();
            if (affectedRows > 0)
            {
                System.Windows.Forms.MessageBox.Show("Insert Success !", System.Windows.Forms.Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Information);
                tbCategoryName.Text = "";
            }
            else
            {
                System.Windows.Forms.MessageBox.Show("Insert Failed !", System.Windows.Forms.Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
        catch (Exception ex)
        {
            System.Windows.Forms.MessageBox.Show(ex.Message, System.Windows.Forms.Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
        con.Close();
    }
4

2 に答える 2