--- parser3/src/classes/table.C 2006/01/20 11:28:44 1.220 +++ parser3/src/classes/table.C 2006/06/09 19:08:12 1.222 @@ -4,7 +4,8 @@ Copyright (c) 2001-2005 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char * const IDENT_TABLE_C="$Date: 2006/01/20 11:28:44 $"; + +static const char * const IDENT_TABLE_C="$Date: 2006/06/09 19:08:12 $"; #include "classes.h" #include "pa_vmethod_frame.h" @@ -33,6 +34,10 @@ public: // Methoded DECLARE_CLASS_VAR(table, new MTable, 0); +// externs + +extern String cycle_data_name; + // defines for globals #define SQL_BIND_NAME "bind" @@ -394,7 +399,9 @@ static void _save(Request& r, MethodPara TableSeparators separators; if(param_indexcount()) throw Exception("parser.runtime", @@ -404,7 +411,7 @@ static void _save(Request& r, MethodPara throw Exception("parser.runtime", 0, "additional params must be hash (did you spell mode parameter correctly?)"); - + } } if(param_index + cycle_data_setter(r.classes_conf, cycle_data_name, /*any not null flag*/&r); + Value& body_code=params.as_junction(0, "body must be code"); Value* delim_maybe_code=params.count()>1?¶ms[1]:0; @@ -502,6 +512,7 @@ static void _menu(Request& r, MethodPara table.set_current(row); StringOrValue sv_processed=r.process(body_code); + Request::Skip lskip=r.get_skip(); r.set_skip(Request::SKIP_NOTHING); const String* s_processed=sv_processed.get_string(); if(delim_maybe_code && s_processed && s_processed->length()) { // delimiter set and we have body if(need_delim) // need delim & iteration produced string? @@ -509,6 +520,9 @@ static void _menu(Request& r, MethodPara need_delim=true; } r.write_pass_lang(sv_processed); + + if(lskip==Request::SKIP_BREAK) + break; } table.set_current(saved_current); } @@ -918,7 +932,7 @@ int marshal_binds(HashStringValue& hash, int hash_count=hash.count(); placeholders=new(UseGC) SQL_Driver::Placeholder[hash_count]; SQL_Driver::Placeholder* ptr=placeholders; - hash.for_each(marshal_bind, &ptr); + hash.for_each(marshal_bind, &ptr); return hash_count; }