mirror of
https://github.com/pocoproject/poco.git
synced 2026-01-02 10:43:22 +01:00
* fix(Poco::Data): fixes and improvements #4198 * chore: remove inadvertently commited garbage file * fix(SQLite): SQLChannel tests #4198 * fix(Data::SessionPool): Improve Data::SessionPool thread safety #4206
This commit is contained in:
committed by
GitHub
parent
de04b9eac7
commit
5131fe1c15
@@ -166,6 +166,12 @@ const std::string& PooledSessionImpl::connectorName() const
|
||||
}
|
||||
|
||||
|
||||
bool PooledSessionImpl::hasFeature(const std::string& name)
|
||||
{
|
||||
return access()->hasFeature(name);
|
||||
}
|
||||
|
||||
|
||||
void PooledSessionImpl::setFeature(const std::string& name, bool state)
|
||||
{
|
||||
access()->setFeature(name, state);
|
||||
@@ -178,6 +184,12 @@ bool PooledSessionImpl::getFeature(const std::string& name)
|
||||
}
|
||||
|
||||
|
||||
bool PooledSessionImpl::hasProperty(const std::string& name)
|
||||
{
|
||||
return access()->hasProperty(name);
|
||||
}
|
||||
|
||||
|
||||
void PooledSessionImpl::setProperty(const std::string& name, const Poco::Any& value)
|
||||
{
|
||||
access()->setProperty(name, value);
|
||||
|
||||
Reference in New Issue
Block a user