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

    MFC CMap into oracle SQL

    I have MFC class that contains a CMap with 160K~ entries. CMap(long,long,long,long).

    I need to save this CMap in oracle SQL.

    How do you recommend to save it ? blob,clob ? and do you have a good resource of example on implementing reading and writing CMAP to blob ?

  2. #2
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: MFC CMap into oracle SQL

    I believe CMap uses pointers internally, so you can't save it the way you want to. You're probably going to need to export its data into a format that works with SQL.

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