~eday/drizzle/eday-dev

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.h

  • Committer: Eric Day
  • Date: 2010-01-07 20:02:38 UTC
  • mfrom: (971.3.291 staging)
  • Revision ID: eday@oddments.org-20100107200238-uqw8v6kv9pl7nny5
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
  virtual bool store(const DRIZZLE_TIME *from);
131
131
  virtual bool store(const char *from);
132
132
  virtual bool store(const char *from, size_t length)= 0;
 
133
  virtual bool store(const std::string &from)
 
134
  {
 
135
    return store(from.c_str(), from.size());
 
136
  }
133
137
 
134
138
  /* Try to remove these. */
135
139
  virtual bool haveMoreData(void)= 0;