如果想在数据库中存储WORD文档的话能实现否???如果能的话用什么样的数据库, 怎样做??特别是通过按钮连接的方式直接读出内容可能吗????
   我刚用VC几天,请大家帮帮忙.十分感谢! 
  谢谢!!!

解决方案 »

  1.   

    可以吧,用一个OLE类型的字段,应该就可以吧
    我做过把图片存入数据库的OLE字段。
      

  2.   

    VC把一个文件存入数据库  CFile imagefile;
      if(0 == imagefile.Open("d:\\user\\bmp.bmp",CFile::modeRead))
         return;
      _RecordsetPtr pRs = NULL;             
      _ConnectionPtr pConnection = NULL;
      _variant_t varChunk;
      HRESULT hr;
      BYTE* pbuf;
      long nLength = imagefile.GetLength();
      pbuf = new BYTE[nLength+2];
      if(pbuf == NULL)
         return;                             //allocate memory error;
      imagefile.Read(pbuf,nLength);          //read the file into memory  BYTE *pBufEx;
      pBufEx = pbuf;
      //build a SAFFERRAY
      SAFEARRAY* psa;
      SAFEARRAYBOUND rgsabound[1];
      rgsabound[0].lLbound = 0;
      rgsabound[0].cElements = nLength;
      psa = SafeArrayCreate(VT_UI1, 1, rgsabound);  for (long i = 0; i < nLength; i++)
           SafeArrayPutElement (psa, &i, pBufEx++);
      VARIANT varBLOB;
      varBLOB.vt = VT_ARRAY | VT_UI1;
      varBLOB.parray = psa;  _bstr_t strCnn("Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=CUSTOM;Data Source=SERVER");   
        try
        {
            //Open a connection
            pConnection.CreateInstance(__uuidof(Connection));
            hr = pConnection->Open(strCnn,"","",NULL);   //Connect a DataBase
            pRs.CreateInstance(__uuidof(Recordset));
            pRs->Open("CustomInfo",_variant_t((IDispatch *) pConnection,true),adOpenKeyset,adLockOptimistic,adCmdTable);  //Open a Table
     
    //      pRs->AddNew();       
            pRs->Fields->GetItem("Image")->AppendChunk(varBLOB);       
            pRs->Update();
            pRs->Close();
            pConnection->Close();
     }
        catch(_com_error &e)
        {
            // Notify the user of errors if any.
            _bstr_t bstrSource(e.Source());
            _bstr_t bstrDescription(e.Description());
            CString sError;
            sError.Format("Source : %s \n Description : %s\n",(LPCSTR)bstrSource,(LPCSTR)bstrDescription);
            AfxMessageBox(sError);    
     }