Ejemplo n.º 1
0
CCallableStatement::~CCallableStatement()
{
    try {
        Notify(CDbapiClosedEvent(this));
    }
    NCBI_CATCH_ALL_X( 2, kEmptyStr )
}
Ejemplo n.º 2
0
CResultSet::~CResultSet()
{
    try {
        Notify(CDbapiClosedEvent(this));
        FreeResources();
        Notify(CDbapiDeletedEvent(this));
        _TRACE(GetIdent() << " " << (void*)this << " deleted.");
    }
    NCBI_CATCH_ALL_X( 6, kEmptyStr )
}
Ejemplo n.º 3
0
void CResultSet::Close()
{
    Notify(CDbapiClosedEvent(this));
    FreeResources();
}
Ejemplo n.º 4
0
void CDBAPIBulkInsert::Close()
{
    Notify(CDbapiClosedEvent(this));
    FreeResources();
}
Ejemplo n.º 5
0
void CStatement::Close()
{
    Notify(CDbapiClosedEvent(this));
    FreeResources();
}
Ejemplo n.º 6
0
void CCursor::Close()
{
    Notify(CDbapiClosedEvent(this));
    FreeResources();
}