coldata3.hh
上传用户:clovervx
上传日期:2010-03-30
资源大小:787k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #ifndef __coldata3_hh__
  2. #define __coldata3_hh__
  3. #include <string>
  4. using namespace std ;
  5. #include <mysql.h>
  6. #include "coldata2.hh"
  7. #include "convert3.hh"
  8. #include "null3.hh"
  9. template <class Str, class T, class B> 
  10. mysql_ColData<Str>::operator Null<T,B> () const {
  11.   if ((*this)[0] == 'N' && (*this)[1] == 'U' && 
  12.       (*this)[2] == 'U' && (*this)[3] == 'L' && size() == 4)
  13.     return Null<T,B>(null);
  14.   else return Null<T,B>(conv(T()));
  15. }
  16. #endif