coldata4.hh
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #ifndef __coldata4_h__
  2. #define __coldata4_h__
  3. #include "convert3.hh"
  4. #include "coldata3.hh"
  5. #include "string_util.hh"
  6. // FIX: the implementation of the conv function has moved to coldata1.hh
  7. /*
  8. template <class Str, class Type>
  9. Type mysql_ColData<Str>::conv<Type> (Type dummy) const {
  10. string strbuf(buf);
  11. strip_all_blanks(strbuf);
  12.   size_t len = strbuf.size();
  13.   const char *str = strbuf.c_str();
  14.   const char *end = str;
  15.   Type num = mysql_convert<Type>(str, end);
  16.   if (*end == '.') {
  17.     end++;
  18.     for (;*end == '0'; end++);
  19.   }
  20.   if (*end != '' && end != NULL ) {
  21.     throw BadConversion (typeid(Type).name(), c_str(), end - str, len);
  22.   }
  23.   return num;
  24. }
  25. */
  26. #endif