在数据库中插入数据表

在数据库中插入数据表

本文介绍了在数据库中插入数据表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个数据表,该数据表是由用户在textBoxes中提供的值填充的
..

它创建为
DataTable Dtl =新的DataTable();

现在,我希望一次将这些数据发送[插入]到我的数据库表[Student].我不想使用循环.有什么办法可以做到.


pls help

I am having a datatable that is populated from user supplied values in textBoxes
..

It is Created as
DataTable Dtl=new DataTable();

Now i want this data to be sent[inserted] to my Database table[Student] at one go. i dont want to use loop. is there any way to do so.


pls help

推荐答案


这篇关于在数据库中插入数据表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 19:55