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

Search:

Type: Posts; User: Paul McKenzie

Search: Search took 3.97 seconds.

  1. Re: ODBC: Retrieveing large data

    No problem. It's one of those things that stumps a lot of programmers when it comes to ODBC, and that is how to retrieve all the data in a large column, but be memory efficient at the same time...
  2. Re: ODBC: Retrieveing large data

    Personally, I've never gotten the mixture to work successfully for one result set. So you could write your wrapper to do both methods, but each being exclusive of the other (the result set must...
  3. Re: ODBC: Retrieveing large data

    This thread also may have to do with the bind and fetch method being used, limiting the data being retrieved:

    http://www.codeguru.com/forum/showthread.php?t=518156

    Regards,

    Paul McKenzie
  4. Re: ODBC: Retrieveing large data

    ODBC has basically two methods of retrieving data. The one you described is limited in that you are binding variables to the columns before you fetch the data. Once you do that you are limited to...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured