~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • Committer: Brian Aker
  • Date: 2009-03-05 16:38:18 UTC
  • Revision ID: brian@tangent.org-20090305163818-7w2vj1jrxti8d87e
Remove dead string class bits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
274
274
  bool append(const char *s);
275
275
  bool append(const char *s,uint32_t arg_length);
276
276
  bool append(const char *s,uint32_t arg_length, const CHARSET_INFO * const cs);
277
 
  bool append(IO_CACHE* file, uint32_t arg_length);
278
277
  bool append_with_prefill(const char *s, uint32_t arg_length,
279
278
                           uint32_t full_length, char fill_char);
280
279
  int strstr(const String &search,uint32_t offset=0); // Returns offset to substring or -1
342
341
    int4store(Ptr + position,value);
343
342
  }
344
343
 
345
 
  void qs_append(const char *str, uint32_t len);
346
 
  void qs_append(double d);
347
 
  void qs_append(double *d);
348
 
  inline void qs_append(const char c)
349
 
  {
350
 
     Ptr[str_length]= c;
351
 
     str_length++;
352
 
  }
353
 
  void qs_append(int i);
354
 
  void qs_append(uint32_t i);
355
 
 
356
344
  /* Inline (general) functions used by the protocol functions */
357
345
 
358
346
  inline char *prep_append(uint32_t arg_length, uint32_t step_alloc)