将记录插入表中
我是 C# 新手,
正在开发牛奶收集中心软件项目。
我准备了一份表格,在其中输入客户的姓名和信息。
我想将输入的信息插入到我在 MS Access 中创建的表中。
我无法插入记录。
假设我有以下内容:
public class Record
{
public int ID { get; set; }
public bool Status { get; set; }
public string Message { get; set; }
}
给定一个列表记录,如何将其转换为数据集,如下所示:
ID Status Message 1 true "message" 2 false "message2" 3 true "message3" ...
目前我唯一能想到的如下:
DataSet ds = new DataSet
ds.Tables.Add();
ds.Tables[0].Add("ID", typeof(int));
ds.Tables[0].Add("Status", typeof(bool));
ds.Tables[0].Add("Message", typeof(string));
foreach(Record record in records)
{
ds.Tables[0].Rows.Add(record.ID, record.Status, record.Message);
}
所以伙计们,请帮助我,告诉我该怎么做插入。
I'm new to C#
I'm working on the milk collection center software project.
I have prepared a form in which I'm entering the name and information of the customers.
I want to insert the entered information in to the table which I have created in MS Access.
I'm unable to insert the records.
Say I have the following:
public class Record
{
public int ID { get; set; }
public bool Status { get; set; }
public string Message { get; set; }
}
Given a List records, how do I transform it into a DataSet as follows:
ID Status Message 1 true "message" 2 false "message2" 3 true "message3" ...
At the moment the only thing I can think of is as follows:
DataSet ds = new DataSet
ds.Tables.Add();
ds.Tables[0].Add("ID", typeof(int));
ds.Tables[0].Add("Status", typeof(bool));
ds.Tables[0].Add("Message", typeof(string));
foreach(Record record in records)
{
ds.Tables[0].Rows.Add(record.ID, record.Status, record.Message);
}
So guys, please help me, tell me how can I do this insertion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论