私の問題は、DGV コントロールのセルに値を表示することです。たとえば、次のようになります。
MySQL テーブル:
ID - Name - Price - Type
1 Mouse Pad 2.85$ - a
2 Keyboard 10.50$ - a
3 Hard Disk 80.00$ - c
4 Web Cam 15.02$ - b
5 Printer 45.62$ - c
6 DVD Writer 20.00$ - b
私のDataGridViewコントロール:
ID - Name - PriceA - PriceB - PriceC
これらの条件でフィルタリングした結果を表示したい [VB.NET sintax]:
If SQLcolumn(Type) = a Then, show the price into PriceA into the DGV.
If SQLcolumn(Type) = b Then, show the price into PriceB into the DGV.
If SQLcolumn(Type) = c Then, show the price into PriceC into the DGV.