~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/oldlibdrizzle/oldlibdrizzle.h

  • Committer: Monty Taylor
  • Date: 2009-06-08 13:39:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1060.
  • Revision ID: mordred@inaugust.com-20090608133905-3hogrrafmfg6e5hs
Removed CHARSET_INFO stuff from protocol plugin interface - it makes no sense.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
  uint32_t field_pos;
38
38
  uint32_t field_count;
39
39
  bool netStoreData(const unsigned char *from, size_t length);
40
 
  bool netStoreData(const unsigned char *from, size_t length,
41
 
                    const CHARSET_INFO * const fromcs,
42
 
                    const CHARSET_INFO * const tocs);
43
 
  bool storeString(const char *from, size_t length,
44
 
                   const CHARSET_INFO * const fromcs,
45
 
                   const CHARSET_INFO * const tocs);
46
40
 
47
41
  /**
48
42
   * Performs handshake with client and authorizes user.
91
85
  virtual bool store(uint64_t from);
92
86
  virtual bool store(double from, uint32_t decimals, String *buffer);
93
87
  virtual bool store(const DRIZZLE_TIME *from);
94
 
  virtual bool store(const char *from, size_t length,
95
 
                     const CHARSET_INFO * const cs);
 
88
  virtual bool store(const char *from, size_t length);
96
89
};
97
90
 
98
91
class ProtocolFactoryOldLibdrizzle: public ProtocolFactory