Framework update

This commit is contained in:
stephb9959
2022-05-04 16:09:37 -07:00
parent e0d45d50d6
commit a149f167ec

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;
}