以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  关于跨表引用不完全问题  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=170108)

--  作者:wangglby
--  发布时间:2021/7/13 9:03:00
--  关于跨表引用不完全问题

窗口中的按钮用以下代码,把表A数据加到表B中,但如果表B中存在和表A一样编码的,则更新数据。

 

现 存在一个问题,点击按钮 不能完全把表A数据引用到B中,总存在几列内容引不过去,只有再点一次按钮才能把剩下的数据引过去,

 

表的列特别多,有200多,这个代码有列数限制吗?

 

 

For Each dr1 As DataRow In DataTables("表A").datarows
        Dim dr2 As DataRow = DataTables("表B").find("编码=\'" & dr1("编码") & "\'")
        If dr2 Is Nothing Then
           dr2 =  DataTables("表B").AddNew()
            For Each dc As DataCol In DataTables("表a").DataCols
                If  DataTables("表B").DataCols.Contains(dc.name)  Then
                     If dc.Expression = "" Then                     
                        dr2(dc.Name) = dr1(dc.name)
                    End If
                End If
            Next
        Else           
          For Each dc As DataCol In DataTables("表a").DataCols             
                If  DataTables("表B").DataCols.Contains(dc.name)  Then
                    If dc.Expression = "" Then                    
                        dr2(dc.Name) = dr1(dc.name)
                    End If
                End If
            Next          
        End If
Next


--  作者:有点蓝
--  发布时间:2021/7/13 9:18:00
--  
和列数没有关系。代码看不出什么问题,请上传实例测试