mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
Fixed missing method in SessionImpl in tests
This commit is contained in:
parent
a73462aedf
commit
5fc6c904bd
@ -49,6 +49,10 @@ void SessionImpl::close()
|
||||
_connected = false;
|
||||
}
|
||||
|
||||
void SessionImpl::reset()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
bool SessionImpl::isConnected() const
|
||||
{
|
||||
|
@ -45,6 +45,9 @@ public:
|
||||
void close();
|
||||
/// Closes the session.
|
||||
|
||||
void reset();
|
||||
/// Reset connection with dababase and clears session state, but without disconnecting
|
||||
|
||||
bool isConnected() const;
|
||||
/// Returns true if session is connected to the database,
|
||||
/// false otherwise.
|
||||
|
Loading…
Reference in New Issue
Block a user