CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: anandvijayakumar

Search: Search took 0.05 seconds.

  1. Re: MFC CRecordset heap corruption detected at Close()

    to be more precise the overloaded delete() it fails in this function.
    if (!CheckBytes(pbData(pHead) + pHead->nDataSize, _bNoMansLandFill, nNoMansLandSize))

    and then throws this exception
    if...
  2. Re: MFC CRecordset heap corruption detected at Close()

    Close() calls the CRecordset.Close() function.
    In void CRecordset::Close() function it calls CRecordset::FreeRowset();

    It tries to delete the rowset status
    delete [] m_rgRowStatus;

    the...
  3. Re: MFC CRecordset heap corruption detected at Close()

    Thanks. Paul for your response.

    If you see my above post. I have mentioned the error happens at rsProcessLog.Close(); It happens in both Debug and Release version with different error messages.
    ...
  4. Re: MFC CRecordset heap corruption detected at Close()

    Thanks. Victor.
    Unfortunately the question was "Not Answered" in the oracle forums thread.
  5. MFC CRecordset heap corruption detected at Close()

    I recently upgraded my operating system from Windows XP to Windows 7 SP1 64 bit. We are using Visual Studio 2008 Professional Edition and Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 -...
  6. Not able to connect with Oracle 11 from VC++ in VS 2008 using Oracle ODBC driver in W

    I was using Windows XP 32 bit o/s and I had a 32 bit application that was connecting with Oracle 11g database using Oracle ODBC driver.

    Recently my company upgraded my machine to Window7, 64 bit...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured