本文介绍了在数据库中插入新行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

private void button1_Click(object sender, EventArgs e)
        {
            this.tableTableAdapter.Insert("some text in 1st collumn", "2", "3", "4", "5");
            this.tableTableAdapter.Update(this.webDataSet.table);

        }



我正在使用DataGridView.需要手动添加记录(而不是通过在DataGridView中编辑)并更新表.
请帮忙.



I''m using DataGridView. Need to add records manually(not by editing in DataGridView) and update table.
Please, help.

推荐答案


这篇关于在数据库中插入新行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 04:34