Index: src/libchcore/TRowData.h =================================================================== diff -u -r9479911a096555a7504c5c8a8eaee83ecb63440c -ra5aa3c3cb78f3767641de2627d1a49a1dc35b429 --- src/libchcore/TRowData.h (.../TRowData.h) (revision 9479911a096555a7504c5c8a8eaee83ecb63440c) +++ src/libchcore/TRowData.h (.../TRowData.h) (revision a5aa3c3cb78f3767641de2627d1a49a1dc35b429) @@ -39,6 +39,8 @@ TRowData(const TString& strColName, unsigned short uiValue); TRowData(const TString& strColName, int iValue); TRowData(const TString& strColName, unsigned int uiValue); + TRowData(const TString& strColName, long lValue); + TRowData(const TString& strColName, unsigned long ulValue); TRowData(const TString& strColName, long long llValue); TRowData(const TString& strColName, unsigned long long llValue); TRowData(const TString& strColName, double dValue); @@ -69,7 +71,7 @@ InternalVariant m_varValue; #pragma warning(pop) - friend class TSQLiteSerializerRowWriter; + friend class TSQLiteSerializerRowData; }; typedef boost::shared_ptr TRowDataPtr;