Framework update.

This commit is contained in:
stephb9959
2022-05-04 16:10:44 -07:00
parent a8a543190e
commit dbe279d083

View File

@@ -156,12 +156,8 @@ namespace ORM {
}
inline std::string to_string(const Poco::Data::BLOB &blob) {
auto Content = blob.content();
std::string result;
result.reserve(Content.size());
for(const auto &c:Content) {
result += (char) c;
}
result.assign(blob.begin(),blob.end());
return result;
}