CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: E_OUTOFMEMORY

  1. #1
    Guest

    E_OUTOFMEMORY

    I have a small VC++ 6.0 application that has been running without any problem. This application connects to MS-SQL server 6.5 using MS-ADO (msado15.dll) version 2.0. Suddenly, it got an error message E_OUTOFMEMORY "Not enough storage is available to complete the operation." returned from the server every time it tries to execute a stored procedure. I have winNT ws with 128mb of memory and 400mb of diskspace on the C drive. I send the application to another developer's machine which has the same configuration and the program runs fine.

    What could be wrong at my machine?


  2. #2
    Join Date
    Oct 1999
    Posts
    1

    Re: E_OUTOFMEMORY

    E_OUTOFMEMORY is one of those funky messages that are not
    always what they seem. I recall that this one can be related
    to a COM problem, like marshalling, or CoInitialize or something,
    and not to a true out of memory condition. Searching for this
    error on usenet should help.



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured