mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
Fixed ODBC SessionImpl
This commit is contained in:
parent
8f2fef23e4
commit
a73462aedf
@ -97,6 +97,9 @@ public:
|
||||
void rollback();
|
||||
/// Aborts a transaction
|
||||
|
||||
void reset();
|
||||
/// Do nothing
|
||||
|
||||
bool isTransaction() const;
|
||||
/// Returns true iff a transaction is in progress.
|
||||
|
||||
|
@ -387,6 +387,12 @@ void SessionImpl::rollback()
|
||||
}
|
||||
|
||||
|
||||
void SessionImpl::reset()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
void SessionImpl::close()
|
||||
{
|
||||
if (!isConnected()) return;
|
||||
|
Loading…
Reference in New Issue
Block a user