Dim dr2 As DataRow = DataTables("回收编号表").Find("编号 is not null and 表名='订单表' and 前缀='前缀'", "编号")
If dr2 IsNot Nothing Then
e.DataRow("单号") = dr2("编号")
dr2.Delete
上面执行后失效,如何改?
Dim dr2 As DataRow = DataTables("回收编号表").SQLFind("前缀 is not null and 表名='订单表'", "前缀", ("[编号] = '" & e.DataRow("编号") & "'"))
调用的目标发生了异常。
从字符串“[编号] = ''”到类型“Integer”的转换无效?
输入字符串的格式不正确。
[此贴子已经被作者于2025/4/3 15:55:01编辑过]
Dim dr2 As DataRow = DataTables("回收编号表").Find("前缀 is not null and 表名='订单表'", "前缀")上面可执行,但加上编号列,下面执行,没报错,调试,结果为空,但回收编号表确实有数据,要如何解决?
Dim dr2 As DataRow = DataTables("回收编号表").SQLFind("前缀 is not null and 表名='订单表' and [编号] = '" & e.DataRow("编号") & "'", "前缀")
Dim dr2 As DataRow = DataTables("回收编号表").Find("前缀 is not null and 表名='订单表' and [编号] = '" & e.DataRow("编号") & "'", "前缀")
此主题相关图片如下:回收表.jpg

[此贴子已经被作者于2025/4/3 16:48:05编辑过]
msgbox("前缀 is not null and 表名='订单表' and [编号] = '" & e.DataRow("编号") & "'") 显示什么内容
Dim dr1 As DataRow = Tables("订单表").Current.DataRow
Dim dr2 As DataRow = DataTables("回收编号表").SQLFind("前缀='" & dr1("前缀") & "' and 表名='订单表'", "编号")
msgbox("前缀='" & dr1("前缀") & "' and 表名='订单表' ", "编号")
报错
从字符串“编号”到类型“Integer”的转换无效。
输入字符串的格式不正确。
前缀,编号都字符字段