簡體   English   中英

插入本地數據庫后,DataGridView不顯示數據

[英]DataGridView not showing the data after inserting in local database

我創建了一個鏈接到本地​​數據庫的應用程序。 它運作良好,但是唯一的問題是,當我按下插入按鈕后,只有在關閉並重新打開應用程序之后,數據才會插入到db中,但不會顯示在GridView中。 按下插入值的按鈕后,如何使它立即顯示數據? 謝謝 !

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlServerCe;
using System.IO;

namespace Gradinita
{
    public partial class Grupa : Form
    {
        string nume = "";
        List<Label> labels = new List<Label>();
        public Grupa(string nume)
        {
            InitializeComponent();
            this.nume = nume;

        }

        private void Grupa_Load(object sender, EventArgs e)
        {
            // TODO: This line of code loads data into the 'grupeDataSet8.copii' table. You can move, or remove it, as needed.
            this.copiiTableAdapter2.Fill(this.grupeDataSet8.copii);
            // TODO: This line of code loads data into the 'grupeDataSet7.copii' table. You can move, or remove it, as needed.
            this.copiiTableAdapter1.Fill(this.grupeDataSet7.copii);
            // TODO: This line of code loads data into the 'grupeDataSet3.copii' table. You can move, or remove it, as needed.
            this.copiiTableAdapter.Fill(this.grupeDataSet3.copii);
            var connString = (@"Data Source=" + System.IO.Path.Combine(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location)) + @"\Grupe.sdf");
            using (var conn = new SqlCeConnection(connString))
            {
                try
                {
                    conn.Open();
                    var query = "SELECT * FROM grupe WHERE Nume='" + nume + "'";
                    var command = new SqlCeCommand(query, conn);
                    var dataAdapter = new SqlCeDataAdapter(command);
                    var dataTable = new DataTable();
                    dataAdapter.Fill(dataTable);

                    label1.Text = dataTable.Rows[0][0].ToString();
                    label2.Text = dataTable.Rows[0][1].ToString();
                    label3.Text = dataTable.Rows[0][2].ToString();
                    label4.Text = dataTable.Rows[0][3].ToString();

                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.ToString());
                }
        }
    }

        private void button1_Click(object sender, EventArgs e)
        {
            if (checkBox1.Checked)
            {
                label5.Text = ("1");
            }
            if (checkBox2.Checked)
            {
                label5.Text = ("0");
            }
            textBox1.Text = (Convert.ToInt32(textBox5.Text) - Convert.ToInt32(textBox6.Text)).ToString();
            var connString = (@"Data Source=" + Directory.GetParent(Directory.GetCurrentDirectory()).Parent.FullName + @"\Grupe.sdf");
            using (var conn = new SqlCeConnection(connString))
            {
                try
                {
                    conn.Open();
                    var query = "INSERT INTO copii(prezenta, Nume, Prenume, Program, Taxa, Achitat, Diferenta) VALUES('" + label5.Text + "', '" + textBox2.Text.Trim() + "', '" + textBox3.Text.Trim() + "', '" + textBox4.Text.Trim() + "', '" + textBox5.Text.Trim() + "', '"+ textBox6.Text.Trim()+"', '"+ textBox1.Text.Trim() +"');";
                    MessageBox.Show(query);
                    var command = new SqlCeCommand(query, conn);
                    command.ExecuteNonQuery();
                    dataGridView1.Refresh();  //not working obviously

                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.ToString());
                }

            }
        }
        }

您需要重新查詢數據並重新綁定數據表。

就像是:

dataGridView1.DataSource = SomeDataTableSource;
dataGridView1.DataBind();

我設法通過將網格重新添加到控件中來繞過此操作。 首先,將網格復制到變量中,然后將其從父控件中刪除,然后將變量添加到該控件的控件中。

var grid = dataGridView1.Parent.Controls["dataGridView1"];
var ctr = dataGridView1.Parent;
ctr.Controls.Remove(dataGridView1);
ctr.Controls.Add(grid);

它沒有經過測試,我可能會誤輸入一些名稱,因為我在這里沒有安裝VS,但是您明白了。 不是最優雅的解決方案,但它對我有用。 您也可以嘗試dataGridView1.Refresh()-它對我不起作用。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM