DemoBlobInsertDlg.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:7k
源码类别:
ActiveX/DCOM/ATL
开发平台:
Visual C++
- // DemoBlobInsertDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "DemoBlobInsert.h"
- #include "DemoBlobInsertDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CAboutDlg dialog used for App About
- class CAboutDlg : public CDialog
- {
- public:
- CAboutDlg();
- // Dialog Data
- //{{AFX_DATA(CAboutDlg)
- enum { IDD = IDD_ABOUTBOX };
- //}}AFX_DATA
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CAboutDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- //{{AFX_MSG(CAboutDlg)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
- {
- //{{AFX_DATA_INIT(CAboutDlg)
- //}}AFX_DATA_INIT
- }
- void CAboutDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CAboutDlg)
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
- //{{AFX_MSG_MAP(CAboutDlg)
- // No message handlers
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CDemoBlobInsertDlg dialog
- CDemoBlobInsertDlg::CDemoBlobInsertDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CDemoBlobInsertDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CDemoBlobInsertDlg)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
- m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
- }
- void CDemoBlobInsertDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CDemoBlobInsertDlg)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CDemoBlobInsertDlg, CDialog)
- //{{AFX_MSG_MAP(CDemoBlobInsertDlg)
- ON_WM_SYSCOMMAND()
- ON_WM_PAINT()
- ON_WM_QUERYDRAGICON()
- ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
- ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CDemoBlobInsertDlg message handlers
- BOOL CDemoBlobInsertDlg::OnInitDialog()
- {
- CDialog::OnInitDialog();
- // Add "About..." menu item to system menu.
- // IDM_ABOUTBOX must be in the system command range.
- ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
- ASSERT(IDM_ABOUTBOX < 0xF000);
- CMenu* pSysMenu = GetSystemMenu(FALSE);
- if (pSysMenu != NULL)
- {
- CString strAboutMenu;
- strAboutMenu.LoadString(IDS_ABOUTBOX);
- if (!strAboutMenu.IsEmpty())
- {
- pSysMenu->AppendMenu(MF_SEPARATOR);
- pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
- }
- }
- // Set the icon for this dialog. The framework does this automatically
- // when the application's main window is not a dialog
- SetIcon(m_hIcon, TRUE); // Set big icon
- SetIcon(m_hIcon, FALSE); // Set small icon
- // TODO: Add extra initialization here
- ::CoInitialize(NULL);
- return TRUE; // return TRUE unless you set the focus to a control
- }
- void CDemoBlobInsertDlg::OnSysCommand(UINT nID, LPARAM lParam)
- {
- if ((nID & 0xFFF0) == IDM_ABOUTBOX)
- {
- CAboutDlg dlgAbout;
- dlgAbout.DoModal();
- }
- else
- {
- CDialog::OnSysCommand(nID, lParam);
- }
- }
- // If you add a minimize button to your dialog, you will need the code below
- // to draw the icon. For MFC applications using the document/view model,
- // this is automatically done for you by the framework.
- void CDemoBlobInsertDlg::OnPaint()
- {
- if (IsIconic())
- {
- CPaintDC dc(this); // device context for painting
- SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
- // Center icon in client rectangle
- int cxIcon = GetSystemMetrics(SM_CXICON);
- int cyIcon = GetSystemMetrics(SM_CYICON);
- CRect rect;
- GetClientRect(&rect);
- int x = (rect.Width() - cxIcon + 1) / 2;
- int y = (rect.Height() - cyIcon + 1) / 2;
- // Draw the icon
- dc.DrawIcon(x, y, m_hIcon);
- }
- else
- {
- CDialog::OnPaint();
- }
- }
- // The system calls this to obtain the cursor to display while the user drags
- // the minimized window.
- HCURSOR CDemoBlobInsertDlg::OnQueryDragIcon()
- {
- return (HCURSOR) m_hIcon;
- }
- void CDemoBlobInsertDlg::OnButton1()
- {
- // TODO: Add your control notification handler code here
- CString strPath="c:\source.bmp";//图片路径
- _ConnectionPtr conn;//连接智能指针
- conn.CreateInstance(__uuidof(Connection));
- //连接数据库源相关参数
- conn->Open(_bstr_t("Provider=OraOLEDB.Oracle.1;User Id=scott;Data Source=tarena"),_bstr_t(""),_bstr_t("tiger"),-1);
- _RecordsetPtr rs;//对应查询结果链表
- rs.CreateInstance(__uuidof(Recordset));
- //与前面项目相同的地方(离线数据库操作)
- rs->Open(_variant_t("select * from MyIMGBooks"),
- conn.GetInterfacePtr(),
- adOpenDynamic,
- adLockPessimistic,
- adCmdText);
- rs->AddNew();//添加一个新节点
- //首先插入非BLOB字段;
- rs->Fields->GetItem(_variant_t("BookISNB"))->Value=_variant_t((long)123);
- rs->Fields->GetItem(_variant_t("BookName"))->Value=_variant_t("adsf");
- rs->Fields->GetItem(_variant_t("BookAuthor"))->Value=_variant_t("adsf");
- //插入BLOB字段;
- int iBufferSize=1024*200;
- BYTE* pBuffer=new BYTE[iBufferSize];
- SAFEARRAYBOUND bd[1];
- bd[0].cElements=iBufferSize;
- bd[0].lLbound=0;
- SAFEARRAY* pArray=SafeArrayCreate(VT_UI1,1,bd);
- //打开文件
- CFile fsource;
- CFileException ex;
- fsource.Open(strPath,CFile::modeRead,&ex);
- int iReaded=0;
- do
- {
- BYTE* pTemp=pBuffer;
- iReaded=fsource.Read(pBuffer,iBufferSize);//读取二进制文件
- for(long i=0;i<iReaded;i++)
- {
- SafeArrayPutElement(pArray,&i,pTemp++);//复制二进制文件
- }
- VARIANT mydata;
- mydata.vt=VT_ARRAY|VT_UI1;
- mydata.parray=pArray;//复制二进制文件
- rs->Fields->GetItem("BookImage")->AppendChunk(mydata);//添加二进制文件
- } while (iReaded==iBufferSize);
- rs->Update();
- rs->Close();
- conn->Close();
- MessageBox("ok");
- }
- void CDemoBlobInsertDlg::OnButton2()
- {
- // TODO: Add your control notification handler code here
- CString strPath="c:\source_bak.bmp";
- _ConnectionPtr conn;
- conn.CreateInstance(__uuidof(Connection));
- conn->Open(_bstr_t("Provider=OraOLEDB.Oracle.1;User Id=scott;Data Source=tarena"),_bstr_t(""),_bstr_t("tiger"),-1);
- _RecordsetPtr rs;
- rs.CreateInstance(__uuidof(Recordset));
- //查询指定数据操作相关
- rs->Open(_variant_t("select * from ocyIMGBooks where Bookisnb=123"),
- conn.GetInterfacePtr(),
- adOpenDynamic,
- adLockPessimistic,
- adCmdText);
- //打开文件
- CFile fTarget;
- CFileException ex;
- fTarget.Open(strPath,CFile::modeCreate|CFile::modeWrite,&ex);
- int iBufferSize=1024*100;
- _variant_t vt;//不能是VARIANT类型
- int iReaded=0;
- //读数据
- if(!rs->adEOF)
- {
- long iAllSize=rs->GetFields()->GetItem("BookImage")->ActualSize;
- int iReadedAll=0;
- do{
- BYTE* pBuf=NULL;
- vt=rs->Fields->GetItem("BookImage")->GetChunk(1024*100);
- iReaded=vt.parray->rgsabound->cElements;
- SafeArrayAccessData(vt.parray,(void **)&pBuf);//安全数组指针指向一般指针
- fTarget.Write(pBuf,iReaded);
- fTarget.Flush();
- SafeArrayUnaccessData(vt.parray);//关闭安全数组
- iReadedAll+=iReaded;
- }while(iReadedAll<iAllSize);
- }
- rs->Close();
- conn->Close();
- fTarget.Close();
- MessageBox("ok!");
- }