你好 如何在c#,winform程序中 获取access数据库中最后一条记录,并使用该记录的字段值

2024年12月01日 11:32
有1个网友回答
网友(1):

如果只是两个字段,这段代码添加没有问题。

至于取最后一条记录的值,可以使用
int total = ds.Tables[0].Rows.Count;
tb1.Text = ds.Tables[0].Rows[total-1]["col1"].ToString();
tb2.Text = ds.Tables[0].Rows[total-1]["col2"].ToString();