如何在C#中将多个记录从DataGridview保存到

如何在C#中将多个记录从DataGridview保存到

本文介绍了如何在C#中将多个记录从DataGridview保存到DB中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个datagridview视图,如下所示:



ProductId |名称|价格|数量



datagridview以所有单元格为空开始。



用户将在每个单元格中输入数据列。用户输入的产品数量发生变化(未知)。用户只能输入一种产品或五种产品。



因此,一旦用户输入了他必须输入的所有产品,我希望当他点击一个按钮时,所有产品都将保存到数据库中。



SQL数据库中的表格看起来像数据网格:



ProductId |名称|价格|数量



由于用户输入的产品数量未知,如何将数据保存到数据库?



大喊大叫删除[/编辑]

I have a datagridview view that looks like this:

ProductId | Name | Price | Quantity

The datagridview starts with all cells empty.

The user will enter data in each of the columns. The number of products the user enters changes(is unknown). The user could enter only one product or five products.

So, once the user has entered all the products he has to enter, i want that when he clicks a button, all products will be saved to the database.

The table in the SQL database looks like the datagrid:

ProductId | Name | Price | Quantity

As the number of products that the user will enter is unknown, how can I save the data to the database?

Shouting removed[/Edit]

推荐答案



这篇关于如何在C#中将多个记录从DataGridview保存到DB中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 16:51