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