On Dec 15, 2010, at 8:03 PM, Steve Alex wrote:
>> If it seems to be related to the beginning or end of the outer loop, could
>> you reduce it to a reproducible example that I can debug?
>
> I'll try with the demo db, but tomorrow - got my 18hr in for today - and I'm
> not getting paid!
Another liberal (bad!) interpretation of the docs
continue
If you are within any kind of loop (For, for each, While, Repeat), the continue
keyword (used on a line by itself ) will transfer execution directly to the top
of the loop. The loop variable in a For loop will be incremented according to
the For clause. If you use continue outside of a loop it will generate an error.
It does not say it will do a "next recored([table])" in a "while (not(end
selection([table])))" loop, just a for loop
I had
if (blob size([applicationdata]import_obj) = 0)
continue
end if
and should of had
if (blob size([applicationdata]import_obj) = 0)
next record([applicationdata])
continue
end if
Sorry for the scare - too may hours spinning wheels
Steve Alex
_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/