How can I read a CLongBinary field from my database and write it into a CFile object?

Jakob

im using a CRecordset to get data from my SQL Server. One table stores a binary file (pdf, odt, ...). My VisualStudio maps the columns to a CLongBinary field.

How can I read and open the file from the CLongBinary field?

im using some ancient version 4.2 of MFC, VisualStudio 6.0

Jabberwocky

Do something like this. This will just give you an idea. I haven't tested the code.

CLongBinary myfield ;

... retrive myfield from database here


BYTE *dataptr = (BYTE*)GlobalLock(myfield.m_hData) ;

// now dataptr points to your raw data, and myfield.m_dwDataLength is the length of that data

CString tempname = ... create temporary filename somewhere
CFile myfile ;
myfile.Open(tempfilename, CFile::modeCreate|CFile::modeWrite);
myfile.Write(dataptr, myfield.m_dwDataLength) ,
myfile.Close() ;
GlobalUnlock(myfield.m_hData) ;

ShellExecute(NULL, _T("open"), tempfilename, NULL, NULL, SW_SHOW) ;

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How can I sync my data from an external database in Rails?

분류에서Dev

How do I set the value of my field so that I can call it from another class?

분류에서Dev

How can I add a new object to an existing Entity, PUT the data and have EF add it to my database?

분류에서Dev

How can I match a user id value from a form input to records in my database?

분류에서Dev

How can I get javascript to write dates in my input boxes?

분류에서Dev

How can I get my SSDs write speeds to perform normally?

분류에서Dev

Python: How can I read csv and clean my data in a loop

분류에서Dev

How can I stop my controller from moving my mouse?

분류에서Dev

How read/write data on my laptop BIOS?

분류에서Dev

How can I read a crash file from /var/crash

분류에서Dev

How can I read a crash file from /var/crash

분류에서Dev

How can I read the body of a messages in a Gmail account from Perl?

분류에서Dev

how can I read from an uploaded text file

분류에서Dev

How can I connect the ASP.NET Identity database with my own database?

분류에서Dev

how can read files in directory and write to file

분류에서Dev

How can I set background image from database in css?

분류에서Dev

How can I get total user in a group from database by PHP

분류에서Dev

Should I use static or instance functions to populate my object from a database?

분류에서Dev

How can I strip out all HTML from my string

분류에서Dev

How can I change my number validation from a form to a prompt?

분류에서Dev

How can I prevent a program from checking my connection status

분류에서Dev

How can I use the Find method to perform a case insensitive search on the database field?

분류에서Dev

read/write an object to file

분류에서Dev

How can I make my query set order by descending in django based on auto increment id field

분류에서Dev

How can I keep object from passing to another form?

분류에서Dev

(How) Can I get GUID from an IWbemClassObject object?

분류에서Dev

Why does my Linux version name read Linaro instead of Xubuntu and how can I fix it?

분류에서Dev

On Heroku, how can I schedule the postgres database for my Rails app to be periodically reset?

분류에서Dev

How to read value in cell from database

Related 관련 기사

  1. 1

    How can I sync my data from an external database in Rails?

  2. 2

    How do I set the value of my field so that I can call it from another class?

  3. 3

    How can I add a new object to an existing Entity, PUT the data and have EF add it to my database?

  4. 4

    How can I match a user id value from a form input to records in my database?

  5. 5

    How can I get javascript to write dates in my input boxes?

  6. 6

    How can I get my SSDs write speeds to perform normally?

  7. 7

    Python: How can I read csv and clean my data in a loop

  8. 8

    How can I stop my controller from moving my mouse?

  9. 9

    How read/write data on my laptop BIOS?

  10. 10

    How can I read a crash file from /var/crash

  11. 11

    How can I read a crash file from /var/crash

  12. 12

    How can I read the body of a messages in a Gmail account from Perl?

  13. 13

    how can I read from an uploaded text file

  14. 14

    How can I connect the ASP.NET Identity database with my own database?

  15. 15

    how can read files in directory and write to file

  16. 16

    How can I set background image from database in css?

  17. 17

    How can I get total user in a group from database by PHP

  18. 18

    Should I use static or instance functions to populate my object from a database?

  19. 19

    How can I strip out all HTML from my string

  20. 20

    How can I change my number validation from a form to a prompt?

  21. 21

    How can I prevent a program from checking my connection status

  22. 22

    How can I use the Find method to perform a case insensitive search on the database field?

  23. 23

    read/write an object to file

  24. 24

    How can I make my query set order by descending in django based on auto increment id field

  25. 25

    How can I keep object from passing to another form?

  26. 26

    (How) Can I get GUID from an IWbemClassObject object?

  27. 27

    Why does my Linux version name read Linaro instead of Xubuntu and how can I fix it?

  28. 28

    On Heroku, how can I schedule the postgres database for my Rails app to be periodically reset?

  29. 29

    How to read value in cell from database

뜨겁다태그

보관