4

ページングを使用してデータを表示していますがdatagridview、データを更新しようとすると、データベースと同様にupdatebuttonデータを更新する必要があります。datagridview

しかし、私はこのエラーが発生します:

変更された行を含む DataRow コレクションが渡された場合、更新には有効な UpdateCommand が必要です

これは次の行で発生します。

adp1.Update(dt);//here I am getting error

以下はコードです

public partial class EditMediClgList : Form
    {        
        public EditMediClgList()
        {
            InitializeComponent();
            try
            {
                con = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=db1.mdb");
                con.Open();
            }
            catch (Exception err)
            {
                MessageBox.Show("Error:" +err);
            }

            cmd1 = new OleDbCommand("Select * from MedicalColeges order by MedicalClgID", con);
            ds = new DataSet();
            adp1 = new OleDbDataAdapter(cmd1);
            adp1.Fill(ds, "MedicalColeges");
            dataGridView1.DataSource = ds;

            // Get total count of the pages; 
            this.CalculateTotalPages();
            // Load the first page of data; 
            this.dataGridView1.DataSource = GetCurrentRecords(1, con);

        }
        private void CalculateTotalPages()
        {
            int rowCount = ds.Tables["MedicalColeges"].Rows.Count;
            this.TotalPage = rowCount / PageSize;
            if (rowCount % PageSize > 0) // if remainder is more than  zero 
            {
                this.TotalPage += 1;
            }
        }
        private DataTable GetCurrentRecords(int page, OleDbConnection con)
        {
             dt = new DataTable();

            if (page == 1)
            {
                cmd2 = new OleDbCommand("Select TOP " + PageSize + " * from MedicalColeges ORDER BY MedicalClgID", con);
                // CurrentPageIndex++;
            }
            else
            {
                int PreviouspageLimit = (page - 1) * PageSize;

                cmd2 = new OleDbCommand("Select TOP " + PageSize +
                    " * from MedicalColeges " +
                    "WHERE MedicalClgID NOT IN " +
                "(Select TOP " + PreviouspageLimit + " MedicalClgID from MedicalColeges ORDER BY MedicalClgID) ", con); // +
                //"order by customerid", con);
            }
            try
            {
                // con.Open();
                this.adp1.SelectCommand = cmd2;
                this.adp1.Fill(dt);
                txtPaging.Text = string.Format("page{0} of {1} pages", this.CurrentPageIndex, this.TotalPage);
            }
            finally
            {
               // con.Close();
            }
            return dt;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            try
            {                
                adp1.Update(dt);//here I am getting error
            }
            catch (Exception err)
            {
                MessageBox.Show(err.Message.ToString());
            }

        }
}
4

4 に答える 4

10

コマンドのみでを作成しOleDbDataAdapterました:Select

adp1 = new OleDbDataAdapter(cmd1);

OleDbDataAdapter次のようにデータを保存するには、有効なUpdate,コマンドを使用する必要があります。Insert, Delete

adp1.Update(dt);//here I am getting error

OleDbCommandBuilderコマンドを生成する a を使用するだけです。

adp1 = new OleDbDataAdapter();
adp1.SelectCommand = cmd1; // cmd1 is your SELECT command
OleDbCommandBuilder cb = new OleDbCommandBuilder(adp1);

編集

実行時にページングの Select コマンドを変更するOleDbDataAdapterため、データを保存するたびに初期化する必要があります。

private void button1_Click(object sender, EventArgs e)
    {
        try
        {                
            adp1.SelectCommand = cmd1; // cmd1 is your SELECT command
            OleDbCommandBuilder cb = new OleDbCommandBuilder(adp1);
            adp1.Update(dt); //here I hope you won't get error :-)
        }
        catch (Exception err)
        {
            MessageBox.Show(err.Message.ToString());
        }

    }
于 2013-09-02T17:47:47.473 に答える
3

テーブルに主キーがない可能性があります。データベース テーブルの列に主キーが設定されていることを確認する必要があります。

于 2015-01-29T08:48:58.357 に答える
0

「@Chris」のおかげで、上記のコードが機能します。更新時に更新されるデータベース テーブル名を指定する必要がありました。詳細については、こちらをご覧ください。

DataAdapter: 更新で TableMapping['Table'] または DataTable 'Table' が見つかりません

// This Adapter and Dataset are used for Populating my datagridview, 
// so I use them also when I need to Update the Datagridview

SqlDataAdapter kundeTlfAdapter;
DataSet kundeTlfDataSet; 

try
{
    SqlConnection connection = new SqlConnection("Data source=BG-1-PC\\SQLEXPRESS; Database = Advokathuset; User Id = abc; Password = abc;");
    SqlCommand cmd1 = new SqlCommand("Select* From Kunde_Tlf", connection);
    SqlCommandBuilder builder = new SqlCommandBuilder(kundeTlfAdapter);
    kundeTlfAdapter.SelectCommand = cmd1; // cmd1 is your SELECT command

    kundeTlfAdapter.Update(kundeTlfDataSet, "Kunde_Tlf"); //I get eror here if I dont add the name of the table that needs Update "Kunde_Tlf"
}
catch (Exception err)
{
    MessageBox.Show(err.Message.ToString());
}
于 2020-05-09T19:34:44.817 に答える