/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=2:tabstop=2:smarttab: * * Copyright (C) 2008 Sun Microsystems, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #pragma once #include namespace drizzled { class Join; class Select_Lex_Unit; class select_result :public memory::SqlAlloc { protected: Session *session; Select_Lex_Unit *unit; public: select_result() { session= current_session; } virtual ~select_result() {} virtual int prepare(List &, Select_Lex_Unit *u) { unit= u; return 0; } /* Because of peculiarities of prepared statements protocol we need to know number of columns in the result set (if there is a result set) apart from sending columns metadata. */ virtual uint32_t field_count(List &fields) const { return fields.size(); } virtual bool send_fields(List &list)=0; virtual bool send_data(List &items)=0; virtual bool initialize_tables (Join *) { return 0; } virtual bool send_eof()=0; virtual void abort() {} void set_session(Session *session_arg) { session= session_arg; } void begin_dataset() {} /***************************************************************************** ** Functions to provide a interface to select results *****************************************************************************/ virtual void send_error(drizzled::error_t errcode, const char *err); /* Cleanup instance of this class for next execution of a prepared statement/stored procedure. */ virtual void cleanup() { /* do nothing */ } }; } /* namespace drizzled */