--- parser3/src/classes/void.C 2002/09/18 08:52:49 1.25 +++ parser3/src/classes/void.C 2002/12/09 12:19:16 1.27 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char* IDENT_VOID_C="$Date: 2002/09/18 08:52:49 $"; +static const char* IDENT_VOID_C="$Date: 2002/12/09 12:19:16 $"; #include "classes.h" #include "pa_request.h" @@ -54,20 +54,21 @@ static void _double(Request& r, const St } #ifndef DOXYGEN -class Void_sql_event_handlers : public SQL_Driver_query_event_handlers { +class Void_sql_event_handlers: public SQL_Driver_query_event_handlers { public: Void_sql_event_handlers(Pool& apool, const String& astatement_string) : pool(apool), statement_string(astatement_string) { } - void add_column(void *ptr, size_t size) { /* ignore */ } - void before_rows() { + bool add_column(SQL_Error& /*error*/, void *ptr, size_t size) { /* ignore */ return false; } + bool before_rows(SQL_Error& error) { // there are some result rows, which is wrong - throw Exception("parser.runtime", + error=SQL_Error("parser.runtime", &statement_string, "must return nothing"); + return true; } - void add_row() { /* never */ } - void add_row_cell(void *ptr, size_t size) { /* never */ } + bool add_row(SQL_Error& /*error*/) { /* never */ return false; } + bool add_row_cell(SQL_Error& /*error*/, void *ptr, size_t size) { /* never */ return false; } private: Pool& pool;