Adding proper serial number cache for quick search

This commit is contained in:
stephb9959
2022-04-04 23:23:08 -07:00
parent 7e06a2b84d
commit 59b752aa92

View File

@@ -419,7 +419,7 @@ namespace ORM {
Poco::Data::Statement Select(Session);
RecordTuple RT;
std::string St = "select " + SelectFields_ + " from " + TableName_ + " where " + FieldName + "=?" ;
std::string St = "select " + SelectFields_ + " from " + TableName_ + " where " + FieldName + "=?" + " limit 1";
auto tValue{Value};