用dataset如何修改数据库?
2个回答
展开全部
SqlConnection conn = new SqlConnection(this.connstr);
SqlDataAdapter da = new SqlDataAdapter("select * from jobs",this.conn);
SqlCommandBuilder scb = new SqlCommandBuilder(da);
DataSet ds1 = new DataSet();
da.Fill(ds1,"迅亏塌temp");
this.ds1.Tables["temp"].DefaultView.Sort = "job_id";
int index = ds1.Tables["temp"].DefaultView.Find(id);
ds1.Tables["temp"].Rows[index]["job_desc"] = name;
da.Update(ds1, "temp");
把dataset 里面空迅的数据修改好亩圆后 有 SqlDataAdapter da的 da.update方法
更新数据库
SqlDataAdapter da = new SqlDataAdapter("select * from jobs",this.conn);
SqlCommandBuilder scb = new SqlCommandBuilder(da);
DataSet ds1 = new DataSet();
da.Fill(ds1,"迅亏塌temp");
this.ds1.Tables["temp"].DefaultView.Sort = "job_id";
int index = ds1.Tables["temp"].DefaultView.Find(id);
ds1.Tables["temp"].Rows[index]["job_desc"] = name;
da.Update(ds1, "temp");
把dataset 里面空迅的数据修改好亩圆后 有 SqlDataAdapter da的 da.update方法
更新数据库
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询