请问如何把list里的多项内容添加到数据库中的一列中(VB)

请问如何把list里的多项内容添加到数据库中的一列中(VB),第1张

a = List1.ListCount'使用LISTBOX的属性ListCount,确定循环的次数。

lst(i) = List1.List(i)NextEnd Sub请将List里的多项内容赋值于数组变量lst(i),用于你写入数据库的语言中.

先声明一个你要添加的表实体类

public class  student

{

   public int id{getset}

   public string name{getset}

}

List<student>st=new List<student>()

foreach(var item in st)

{

    Model.student st=new Model.student()

    st.id=item.id

    st.name=itemt.name

    this.Insert(st)

}

//根据实体添加数据库

public string Insert(Model.student student)

{

.... *** 作数据库

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6643041.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-26
下一篇 2023-03-26

发表评论

登录后才能评论

评论列表(0条)

保存