使用事务:
http://www.foxtable.com/webhelp/topics/3312.htmdo while true
Dim cmd As new SQLCommand()
cmd.ConnectionName = "Orders" '指定数据源
Try
Dim id As Integer = 10258
cmd.BeginTransaction() '开启事务
cmd.CommandText = "select top 1 * from 表A Where 已判断=false"
dim dt as datatable = cmd.ExecuteReader()
if dt.datarows.count = 0 then
exit do
end if
'继续使用同一个SQLCommand执行其它SQL语句.
cmd.CommandText = "Update 表A Set 已判断= true Where OrderID = " & dt.datarows("OrderID ")
cmd.ExecuteNonQuery()
cmd.Commit() '提交事务
Functions.AsyncExecute("nextflow",参数1,参数2,参数…) '异步调用
Catch ex As Exception '如果出错
cmd.Rollback() '则回滚事务
MessageBox.Show(ex.Message, "错误",MessageBoxButtons.OK,MessageBoxIcon.Error)
End Try
loop