mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
added Poco::Data::Session::isGood()
This commit is contained in:
@@ -52,6 +52,7 @@ public:
|
||||
void close();
|
||||
void reset();
|
||||
bool isConnected() const;
|
||||
bool isGood() const;
|
||||
void setConnectionTimeout(std::size_t timeout);
|
||||
std::size_t getConnectionTimeout() const;
|
||||
bool canTransact() const;
|
||||
|
||||
@@ -218,6 +218,9 @@ public:
|
||||
void reconnect();
|
||||
/// Closes the session and opens it.
|
||||
|
||||
bool isGood();
|
||||
/// Returns true iff the session is good and can be used, false otherwise.
|
||||
|
||||
void setLoginTimeout(std::size_t timeout);
|
||||
/// Sets the session login timeout value.
|
||||
|
||||
@@ -350,6 +353,12 @@ inline void Session::reconnect()
|
||||
}
|
||||
|
||||
|
||||
inline bool Session::isGood()
|
||||
{
|
||||
return _pImpl->isGood();
|
||||
}
|
||||
|
||||
|
||||
inline void Session::setLoginTimeout(std::size_t timeout)
|
||||
{
|
||||
_pImpl->setLoginTimeout(timeout);
|
||||
|
||||
@@ -35,7 +35,7 @@ class StatementImpl;
|
||||
|
||||
|
||||
class Data_API SessionImpl: public Poco::RefCountedObject
|
||||
/// Interface for Session functionality that subclasses must extend.
|
||||
/// Interface for Session functionality that subclasses must extend.
|
||||
/// SessionImpl objects are noncopyable.
|
||||
{
|
||||
public:
|
||||
@@ -65,10 +65,10 @@ public:
|
||||
|
||||
virtual void open(const std::string& connectionString = "") = 0;
|
||||
/// Opens the session using the supplied string.
|
||||
/// Can also be used with default empty string to reconnect
|
||||
/// Can also be used with default empty string to reconnect
|
||||
/// a disconnected session.
|
||||
/// If the connection is not established within requested timeout
|
||||
/// (specified in seconds), a ConnectionFailedException is thrown.
|
||||
/// If the connection is not established within requested timeout
|
||||
/// (specified in seconds), a ConnectionFailedException is thrown.
|
||||
/// Zero timout means indefinite
|
||||
|
||||
virtual void close() = 0;
|
||||
@@ -77,6 +77,11 @@ public:
|
||||
virtual bool isConnected() const = 0;
|
||||
/// Returns true if session is connected, false otherwise.
|
||||
|
||||
virtual bool isGood() const;
|
||||
/// Returns true if session is good and can be used, false otherwise.
|
||||
///
|
||||
/// The default implementation returns result of isConnected().
|
||||
|
||||
void setLoginTimeout(std::size_t timeout);
|
||||
/// Sets the session login timeout value.
|
||||
|
||||
@@ -144,7 +149,7 @@ public:
|
||||
///
|
||||
/// Throws a NotSupportedException if the requested feature is
|
||||
/// not supported by the underlying implementation.
|
||||
|
||||
|
||||
virtual bool getFeature(const std::string& name) = 0;
|
||||
/// Look up the state of a feature.
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user