我正在尝试将所有组加载到Array
然后遍历这些组并查看他们每个代理有多少资产,如果资产超过代理而不是将它们移动到我们的虚拟组0但是我我是DataSet
和TableAdapator
的新手。
基本上 基 - 代理 - 资产
0--0--10
1--3--3
2--3--5
3--10--15
所以第2组有2个额外的资产,我想把它们移到空组0
请指导
Dim rs, lines
rs = cn.Execute("select grp from tskmsgrp where listid = 0;")
Dim da As New System.Data.OleDb.OleDbDataAdapter()
Dim da_line As New System.Data.OleDb.OleDbDataAdapter()
Dim ds As New DataSet()
da.Fill(ds, rs, "grp")
MsgBox("There are total products." & ds.Tables(0).Rows.Count.ToString)
For Each a As DataRow In ds.Tables(0).Rows
lines = cn.Execute("select count(*) from tsklines where grp ='" & a(0) & "';")
Dim ds_lines As New DataSet()
da_line.Fill(ds_lines, lines, "lines")
MsgBox("Lines for group." & a(0) & " -- " & ds_lines.Tables(0).Rows.Count.ToString)
Next
答案 0 :(得分:0)
有几点 - 你可以弄清楚细节。