~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_insert.h

  • Committer: Monty Taylor
  • Date: 2011-03-08 23:35:47 UTC
  • mfrom: (2224.2.9 statement2)
  • mto: This revision was merged to the branch mainline in revision 2227.
  • Revision ID: mordred@inaugust.com-20110308233547-w2s3tm5svzv339dp
Merged Olaf - Statement refactor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_SELECT_INSERT_H
22
22
#define DRIZZLED_SELECT_INSERT_H
23
23
 
 
24
#include <drizzled/select_result_interceptor.h>
 
25
 
24
26
namespace drizzled
25
27
{
26
28
 
42
44
  bool send_data(List<Item> &items);
43
45
  virtual void store_values(List<Item> &values);
44
46
  virtual bool can_rollback_data() { return 0; }
45
 
  void send_error(uint32_t errcode,const char *err);
 
47
  void send_error(drizzled::error_t errcode,const char *err);
46
48
  bool send_eof();
47
49
  void abort();
48
50
  /* not implemented: select_insert is never re-used in prepared statements */