1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#ifndef DRIZZLED_SELECT_RESULT_H
22
#define DRIZZLED_SELECT_RESULT_H
24
class select_result :public Sql_alloc {
27
SELECT_LEX_UNIT *unit;
31
session= current_session;
33
virtual ~select_result() {};
34
virtual int prepare(List<Item> &,
41
Because of peculiarities of prepared statements protocol
42
we need to know number of columns in the result set (if
43
there is a result set) apart from sending columns metadata.
45
virtual uint32_t field_count(List<Item> &fields) const
46
{ return fields.elements; }
47
virtual bool send_fields(List<Item> &list, uint32_t flags)=0;
48
virtual bool send_data(List<Item> &items)=0;
49
virtual bool initialize_tables (JOIN *)
51
virtual bool send_eof()=0;
52
virtual void abort() {}
53
void set_session(Session *session_arg) { session= session_arg; }
54
void begin_dataset() {}
56
/*****************************************************************************
57
** Functions to provide a interface to select results
58
*****************************************************************************/
60
virtual void send_error(uint32_t errcode, const char *err)
62
my_message(errcode, err, MYF(0));
66
Cleanup instance of this class for next execution of a prepared
67
statement/stored procedure.
69
virtual void cleanup()
76
#endif /* DRIZZLED_SELECT_RESULT_H */