mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 19:10:20 +01:00
- introduced Poco::Dynamic namespace
- moved/renamed: Poco::DynamicAny => Poco::Dynamic::Var Poco::DynamicAny typedef for backward compatibility (deprecated) DynamicAny.h forwarding header for backward compatibility (deprecated) Poco::DynamicAnyHolder => Poco::Dynamic::VarHolder DynamicAnyHolder.h forwarding header for backward compatibility (deprecated) Poco::DynamicStruct => Poco::Dynamic::Struct Poco::DynamicStruct typedef for backward compatibility (deprecated) DynamicStruct.h forwarding header for backward compatibility (deprecated) - changed FastMutex to Mutex in Data::SessionPool (deadlocking)
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
#include "Poco/Data/Session.h"
|
||||
#include "Poco/DateTime.h"
|
||||
#include "Poco/Timespan.h"
|
||||
#include "Poco/DynamicAny.h"
|
||||
#include "Poco/Dynamic/Var.h"
|
||||
#include "Poco/SharedPtr.h"
|
||||
|
||||
|
||||
@@ -221,10 +221,10 @@ private:
|
||||
|
||||
void initStatements();
|
||||
|
||||
Timespan _maxAge;
|
||||
std::string _ageString;
|
||||
DateTime _archiveDateTime;
|
||||
DynamicAny _archiveCount;
|
||||
Timespan _maxAge;
|
||||
std::string _ageString;
|
||||
DateTime _archiveDateTime;
|
||||
Poco::Dynamic::Var _archiveCount;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user