把Datatable的某个值改变,然后更新到数据库
发布网友
发布时间:2022-04-10 08:11
我来回答
共2个回答
懂视网
时间:2022-04-10 12:33
[csharp] view plain copy
- public static void UpdateTable()
- {
- SqlConnection conn = null;
- string sql = "select *From Course";
-
- DataTable dt = null;
- DataSet ds = new DataSet();
-
- try
- {
- conn = new SqlConnection(connectionString);
- SqlDataAdapter sda = new SqlDataAdapter();
- sda.SelectCommand = new SqlCommand(sql, conn);
- SqlCommandBuilder cb = new SqlCommandBuilder(sda);//自动生成相应的命令,这句很重要
-
- conn.Open();
-
- sda.Fill(ds);
- dt = ds.Tables[0];
-
- DataRow dr = dt.NewRow();
- dr["ID"] = 1006;
- dr["Name"] = "面向对象编程";
- dr["Grade"] = "10004";
- dt.Rows.Add(dr);
-
- sda.Update(dt);//对表的更新提交到数据库
- //DataRow[] drs = dt.Select(null, null, DataViewRowState.Added);//或者搜索之后再更新
- //sda.Update(drs);
-
- dt.AcceptChanges();
- }
- catch (SqlException ex)
- { }
- finally
- {
- conn.Close();
- }
- }
对DataTable(或者DataSet)修改后,提交修改到数据库
标签:try bar state ref ade csharp comment board new
热心网友
时间:2022-04-10 09:41
update
列
set
列=增添的那个值
from
表
where
id=所要增添的那行的id;
直接用更新语句就行了