Dim dr As DataRow = DataTables("订单").Find("雇员 = 'ep01'") If dr IsNot Nothing Then Output.show(dr("雇员")) End If DataTables("订单").BaseTable.CaseSensitive = False ’不区分大小写
Dim dr As DataRow = DataTables("订单").Find("客户ID = 'c01'") If dr IsNot Nothing Then Output.show(dr("客户ID")) End If DataTables("订单").BaseTable.DataSet.CaseSensitive = False '不区分大小写