A
apolloone
Unregistered / Unconfirmed
GUEST, unregistred user!
如
While Not table1.Eof Do //第一级While
Begin
...
While Not table2.Eof Do //第二级While
Begin
...
Try
...
Except
//出错就跳到第一级While的下一个循环中。如何实现呢?
End;
...
End;
...
End;
While Not table1.Eof Do //第一级While
Begin
...
While Not table2.Eof Do //第二级While
Begin
...
Try
...
Except
//出错就跳到第一级While的下一个循环中。如何实现呢?
End;
...
End;
...
End;