1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-15 22:57:12 +02:00

Enable wstring support in poco data.

This commit is contained in:
Sandu Liviu Catalin
2021-02-12 14:21:50 +02:00
parent a526cc7597
commit df61b4eb55
2 changed files with 75 additions and 0 deletions

View File

@ -1654,6 +1654,7 @@ protected:
case Poco::Data::MetaColumn::FDT_STRING:
return LightObj(SqInPlace{}, SqVM(), v.convert< std::string >());
case Poco::Data::MetaColumn::FDT_WSTRING:
return LightObj(SqInPlace{}, SqVM(), v.convert< std::wstring >());
case Poco::Data::MetaColumn::FDT_BLOB:
case Poco::Data::MetaColumn::FDT_CLOB:
case Poco::Data::MetaColumn::FDT_DATE: