我正在使用 Visual Studio Express 2010 为桌面开发 C# 应用程序。
我在 MySQL 中有一个名为 Products 的表,其中包含 3 个字段:
ID -> Product_Name -> product_image
该字段product_Image
将图像路径存储在我的硬盘驱动器中(不是图像本身)
记录的一个例子是:
0001 --- 鼠标垫 XYZ ---- c:\images\mousepad.jpg
我想知道如何填充我的 SQL 查询datagridview
中ID, Produt name, and - especially - the product image
的每条记录。
我发现的所有示例都使用了手动数据插入,但我正在寻找一个示例来使用来自 SQL 查询的数据填充 datagridview,而不是手动插入。
编辑:
感谢您的帮助,但无法直接应用解决方案。
我的表单上已经有一个 datagridview,我不需要在运行时创建。
我需要这样的东西(我会写一个通用的方式)
returnMySQL = "select * from products";
while (returnMySQL)
{
fill datagrid with ID, product name, product image
}