用SqlDataAdapter与datagridview配合实现快速CRUD

Posted dejex

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用SqlDataAdapter与datagridview配合实现快速CRUD相关的知识,希望对你有一定的参考价值。

 

private void btnSave_Click(object sender, EventArgs e)
{
//把DataGridView的修改的数据保存到数据库中去。
string connSql = ConfigurationManager.ConnectionStrings["sql"].ConnectionString;

//修改的sql一定要跟 查询的sql脚本一致。
string sql =
@"Select UserId, UserName, UserAge, DelFlag, CreateDate, UserPwd, LastErrorDateTime, ErrorTimes from userInfo";
using (SqlDataAdapter adapter = new SqlConnection(sql,connSql))
{
//拿到修改后的datatable对象
DataTable dt=dgvUserInfo.DataSource as DataTable;
//用SqlCommandBuider帮我们的Adapter生成相关的CRUD command
using(SqlCommandBuilder cmdBuilder=new SqlCommandBuilder(adapter))
{//将内存表dt映射到数据库的变化
adapter.Update(dt);
}
//
}
SqlDataAdapter含有CRUD4条指令,可以手工写入,也可以用 SqlCommandBuilder注入。这样只要在adapter中传输查询指令,就可以自动生成四条指令。

以上是关于用SqlDataAdapter与datagridview配合实现快速CRUD的主要内容,如果未能解决你的问题,请参考以下文章

用 DataTable 填充的 SqlDataAdapter 不起作用

为啥 SqlDataAdapter 的填充不允许我添加与外观具有相同行值的行?

SqlDataAdapter 更新插入 与 InsertBulkCopy

SqlDataAdapter 与 SqlDataReader

SQLDataAdapter 用主键填充数据表会产生错误并退出子

C# SqlDataAdapter 与来自多个数据库的表的 JOIN