Adam, as I suggested yesterday (if you are pre cf8) you will need to do some
conditional evaluation.

pseudo code:

set var doContinue = false;

if ( conditions are met )
{
doContinue = true;
}

if ( doContinue )
{
-- put all the rest of your processing code here and only run it if your
conditions were met.
}

On Tue, Feb 1, 2011 at 6:26 PM, Adam Bourg <adam.bo...@gmail.com> wrote:

>
> I'm running Coldfusion 8. Trying to use a cfloop over a query. I need to go
> to the next index/user/database-row if some condition is met after
> generating my report.
>
> I asked yesterday, was given CFcontinue but tried it today and it's only
> for ColdFusion 9.
>
> Here's what I've tried:
> Method: <cfthrow type="continue">
> Result: Behaves like a Break
> Method: <cfscript> Continue; </cfscript>
> Result: Behaves like a Break
>
> Please help!
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341809
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to