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:
@ -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:
|
||||
|
Reference in New Issue
Block a user